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/09/10 22:08:05 UTC

[GitHub] [netbeans] BradWalker opened a new pull request #1492: [NETBEANS-3075] - reduce number of warning w/ raw type iterator

BradWalker opened a new pull request #1492: [NETBEANS-3075] - reduce number of warning w/ raw type iterator
URL: https://github.com/apache/netbeans/pull/1492
 
 
   I've tried to reduce the amount of iterator raw type warnings that are emitted..
   
   Here is an example of what I'm trying to fix.
   
   ```
      [repeat] /home/bwalker/netbeans/enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/model/WebServiceGroup.java:102: warning: [rawtypes] found raw type: Iterator
      [repeat]             Iterator iter = listeners.iterator();
      [repeat]             ^
      [repeat]   missing type arguments for generic class Iterator<E>
      [repeat]   where E is a type-variable:
      [repeat]     E extends Object declared in interface Iterator
   ```

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