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/25 21:11:12 UTC

[GitHub] [netbeans] mklaehn opened a new pull request #1669: [NETBEANS-3450] Fixed compiler warnings concerning rawtypes Iterable

mklaehn opened a new pull request #1669: [NETBEANS-3450] Fixed compiler warnings concerning rawtypes Iterable
URL: https://github.com/apache/netbeans/pull/1669
 
 
   There are compiler warnings about rawtype usage with a Iterable like the following
   ```
      [repeat] .../java/spi.java.hints/src/org/netbeans/modules/java/hints/spiimpl/Utilities.java:197: warning: [rawtypes] found raw type: Iterable
      [repeat]     public static <E> Iterable<E> checkedIterableByFilter(final Iterable raw, final Class<E> type, final boolean strict) {
      [repeat]                                                                 ^
      [repeat]   missing type arguments for generic class Iterable<T>
      [repeat]   where T is a type-variable:
      [repeat]     T extends Object declared in interface Iterable
   ```
   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