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 2020/01/03 22:05:35 UTC

[GitHub] [netbeans] lalo-mx commented on a change in pull request #1838: [NETBEANS-3659] - clean up List raw type warnings..

lalo-mx commented on a change in pull request #1838: [NETBEANS-3659] - clean up List raw type warnings..
URL: https://github.com/apache/netbeans/pull/1838#discussion_r362976729
 
 

 ##########
 File path: java/beans/src/org/netbeans/modules/beans/PropertyPatternPanel.java
 ##########
 @@ -519,7 +519,7 @@ public void actionPerformed( java.awt.event.ActionEvent e ) {
         if (TYPES == null) {
             String typeList = NbBundle.getMessage(PropertyPatternPanel.class, "IdxPropertyPatternPanel_Types"); // NOI18N
             StringTokenizer st = new StringTokenizer(typeList, "|"); // NOI18N
-            List l = new LinkedList();
+            List<String> l = new LinkedList();
 
 Review comment:
   The list still accepts any objects. Is that wanted?

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

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