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/08/21 05:17:00 UTC

[jira] [Closed] (NETBEANS-863) Refactor rename of var type Lambda parameter is not proper

     [ https://issues.apache.org/jira/browse/NETBEANS-863?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ARUNAVA SINHA closed NETBEANS-863.
----------------------------------
    Resolution: Fixed

With nb-javac for jdk-11 , refactor rename of lambda var type parameter is working fine

> 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
>            Priority: Minor
>              Labels: JDK11-VarInLambda
>
> 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: 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