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/02 03:30:00 UTC

[jira] [Commented] (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:comment-tabpanel&focusedCommentId=16566303#comment-16566303 ] 

ARUNAVA SINHA commented on NETBEANS-863:
----------------------------------------

Issue is now fixed in latest  Open JDK-11 downloads. Needs to verify the same with nb-javac for JDK-11 when it is available

> 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