You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Benjamin Graf (Jira)" <ji...@apache.org> on 2019/10/06 06:55:00 UTC

[jira] [Created] (NETBEANS-3204) Default formater behavior on switch expression

Benjamin Graf created NETBEANS-3204:
---------------------------------------

             Summary: Default formater behavior on switch expression 
                 Key: NETBEANS-3204
                 URL: https://issues.apache.org/jira/browse/NETBEANS-3204
             Project: NetBeans
          Issue Type: Bug
          Components: editor - Formatting &amp; Indentation
    Affects Versions: 11.2
            Reporter: Benjamin Graf


Using JDK 13 latest switch expression preview feature works very well but using default formatter option seems not works as I would expect by deleting all spaces between case value and expression arrow. One space would look nicer IMHO.

Expected:
{code:java}
switch (i) {
    case 1 ->
        System.out.println("");
}
{code}

As is:
{code:java}
switch (i) {
    case 1->
        System.out.println("");
}
{code}




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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