eirikbakke commented on pull request #2082:
URL: https://github.com/apache/netbeans/pull/2082#issuecomment-622499839


   If you still have this patch running on your build, could you see if this 
also handles the following case?
   
   ```
   public class FooTest {
     public void someMethod() {
       List<String> someFoo = listOf(transform(null, s -> new Integer(5)));
     }
   
     public static <E> List<E> listOf(E element) {
       throw new UnsupportedOperationException();
     }
   
     public static <F, T> Iterable<T> transform(
         Iterable<F> fromIterable, Function<? super F, ? extends T> function)
     {
       throw new UnsupportedOperationException();
     }
   }
   ```


----------------------------------------------------------------
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:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to