BradWalker commented on a change in pull request #2556: URL: https://github.com/apache/netbeans/pull/2556#discussion_r529017587
########## File path: java/ant.debugger/src/org/netbeans/modules/ant/debugger/AntDebugger.java ########## @@ -306,9 +306,8 @@ private void stopHere(AntEvent event) { updateUI(); currentFile = event.getScriptLocation(); // update variable values - Set properties = event.getPropertyNames (); - variables = (String[]) properties.toArray - (new String [properties.size ()]); + Set<String> properties = event.getPropertyNames(); + variables = (String[])properties.toArray(new String [properties.size()]); Review comment: Fixed.. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For additional commands, e-mail: notifications-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists