You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/08/29 20:16:31 UTC

[GitHub] [netbeans] matthiasblaesing commented on a diff in pull request #4265: Cleanup warnings related to raw type List

matthiasblaesing commented on code in PR #4265:
URL: https://github.com/apache/netbeans/pull/4265#discussion_r957750934


##########
enterprise/web.struts/src/org/netbeans/modules/web/struts/StrutsConfigUtilities.java:
##########
@@ -138,7 +138,7 @@ private static void addActions(List<Action> list, StrutsConfig sConfig) {
             mappings = sConfig.getActionMappings();
         }
         if (mappings==null) return;
-        Action [] actions = mappings.getAction();
+        Action[] actions = mappings.getAction();

Review Comment:
   Whitespace only change



##########
java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/ui/FixedWatchesManager.java:
##########
@@ -265,7 +265,7 @@ public void performDefaultAction (
     @Override
     public Action[] getActions (NodeActionsProvider original, Object node) 
     throws UnknownTypeException {
-        Action [] actions = original.getActions (node);
+        Action[] actions = original.getActions (node);

Review Comment:
   Whitespace only change



##########
enterprise/websvc.jaxwsmodel/src/org/netbeans/modules/websvc/api/jaxws/wsdlmodel/WsdlPort.java:
##########
@@ -19,11 +19,13 @@
 
 package org.netbeans.modules.websvc.api.jaxws.wsdlmodel;
 
+import java.util.ArrayList;
+import java.util.List;
+
 import com.sun.tools.ws.processor.model.Operation;
 import com.sun.tools.ws.processor.model.Port;
 import com.sun.tools.ws.wsdl.document.soap.SOAPStyle;
-import java.util.ArrayList;
-import java.util.List;
+

Review Comment:
   Order only change



-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists