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:21:00 UTC

[jira] [Created] (NETBEANS-859) Hint :"Use explicit parameter type" is not working with var type lambda parameters

ARUNAVA SINHA created NETBEANS-859:
--------------------------------------

             Summary: Hint :"Use explicit parameter type" is not working with var type lambda parameters
                 Key: NETBEANS-859
                 URL: https://issues.apache.org/jira/browse/NETBEANS-859
             Project: NetBeans
          Issue Type: Bug
            Reporter: ARUNAVA SINHA
            Assignee: ARUNAVA SINHA


For the below statement

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

Selecting Fix hint 'use explicit parameter types' changes statement to

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

which is incorrect and needs to be fixed.



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