ARUNAVA SINHA created NETBEANS-863:
--------------------------------------

             Summary: Refactor rename of var type Lambda parameter is not proper
                 Key: NETBEANS-863
                 URL: https://issues.apache.org/jira/browse/NETBEANS-863
             Project: NetBeans
          Issue Type: Bug
            Reporter: ARUNAVA SINHA
            Assignee: ARUNAVA SINHA


Refactor-->Rename of var type lambda parameter not proper.

e.g.,

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

Refactor-->Rename of 'y' identifier leads to an error statement.

Actual result:

 IntBinaryOperator calc5 = (var x, y1) -> x + y1;

Expected Result:

 IntBinaryOperator calc5 = (var x, var y1) -> x + y1;



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

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