BradWalker commented on code in PR #4331:
URL: https://github.com/apache/netbeans/pull/4331#discussion_r913891869


##########
enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/multiview/CmpFieldsNode.java:
##########
@@ -88,11 +88,11 @@ public SectionNode getNodeForElement(Object element) {
                 return this;
             }
         } else if (element instanceof CmpField[]) {
-            final List list1 = Arrays.asList(cmpFields.getCmpFields());
-            final List list2 = new LinkedList<>(Arrays.asList((CmpField[]) 
element));
+            final List<CmpField> list1 = 
Arrays.asList(cmpFields.getCmpFields());
+            final List<CmpField> list2 = new 
LinkedList<>(Arrays.<CmpField>asList((CmpField[]) element));

Review Comment:
   done..



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

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

Reply via email to