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 2020/02/10 13:47:42 UTC

[GitHub] [netbeans] AlexFalappa commented on issue #1940: Fix member references in Jackpot scripts

AlexFalappa commented on issue #1940: Fix member references in Jackpot scripts
URL: https://github.com/apache/netbeans/pull/1940#issuecomment-584130254
 
 
   I like the code style change for having no parenthesis around single parameters lambdas.
   
   I always found myself removing them after invoking code completion.
   
   Another thing I would like to see is no explicit body in code completion of lambdas, i.e. having this:
   ```java
   aStream.filter(s -> | );
   ```
   instead of this:
   ```java
   aStream.filter((s) -> {
       return false; //To change body of generated lambdas, choose Tools | Templates.
   });|
   ```
   where `|` denotes the final cursor position.
   
   But I agree this should be covered in a different PR.

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