You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "ARUNAVA SINHA (JIRA)" <ji...@apache.org> on 2018/05/24 10:31:00 UTC

[jira] [Created] (NETBEANS-860) Proposed new hint "Convert Lambda to Use 'var' Parameter Types" for Lambda expression

ARUNAVA SINHA created NETBEANS-860:
--------------------------------------

             Summary: Proposed new hint "Convert Lambda to Use 'var' Parameter Types"  for Lambda expression
                 Key: NETBEANS-860
                 URL: https://issues.apache.org/jira/browse/NETBEANS-860
             Project: NetBeans
          Issue Type: Improvement
            Reporter: ARUNAVA SINHA
            Assignee: ARUNAVA SINHA


Hint "Convert Lambda to Use 'var' Parameter Types" should be enable for below expression. 

IntBinaryOperator cal c=  (int x, int y) -> x + y;

 

Proposed fix : 

IntBinaryOperator calc = (var x, var y) -> x + y;



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

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