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 2019/06/14 17:19:35 UTC

[GitHub] [netbeans] BradWalker opened a new pull request #1300: [NETBEANS-2670] - cleanup raw type warnings

BradWalker opened a new pull request #1300: [NETBEANS-2670] - cleanup raw type warnings
URL: https://github.com/apache/netbeans/pull/1300
 
 
   The NetBeans code has a lot of the following warnings..
   
   ```
   [repeat] /home/bwalker/netbeans-11.0/platform/core.multitabs/src/org/netbeans/core/multitabs/impl/TabLayoutManager.java:245: warning: [rawtypes] found raw type: ArrayList
   [repeat] ArrayList<Integer>[] rowIndexes = new ArrayList[rowCount];
   [repeat] ^
   [repeat] missing type arguments for generic class ArrayList<E>
   ```
   
   So remove the warnings by doing just simply providing a proper type for the generic class..
   
   

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