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/11/30 16:24:26 UTC

[GitHub] [netbeans] mklaehn opened a new pull request #1705: [NETBEANS-3500] Fixed compiler warnings concerning rawtypes TreeSet

mklaehn opened a new pull request #1705: [NETBEANS-3500] Fixed compiler warnings concerning rawtypes TreeSet
URL: https://github.com/apache/netbeans/pull/1705
 
 
   There are compiler warnings about rawtype usage with a TreeSet like the following
   ```
      [repeat] .../ide/xsl/src/org/netbeans/modules/xsl/grammar/XSLGrammarQuery.java:511: warning: [rawtypes] found raw type: TreeSet
      [repeat]             possibleAttributes = new TreeSet();
      [repeat]                                      ^
      [repeat]   missing type arguments for generic class TreeSet<E>
      [repeat]   where E is a type-variable:
      [repeat]     E extends Object declared in class TreeSet
   ```
   The aim is to change the code such that these warnings are no longer emitted by the compiler.

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