You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Laszlo Kishalmi (JIRA)" <ji...@apache.org> on 2018/05/04 02:01:03 UTC

[jira] [Updated] (NETBEANS-97) Improve java source reformatting of try and synchronized blocks with control structures

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

Laszlo Kishalmi updated NETBEANS-97:
------------------------------------
    Fix Version/s:     (was: 9.0)

> Improve java source reformatting of try and synchronized blocks with control structures
> ---------------------------------------------------------------------------------------
>
>                 Key: NETBEANS-97
>                 URL: https://issues.apache.org/jira/browse/NETBEANS-97
>             Project: NetBeans
>          Issue Type: Improvement
>          Components: java - Source
>    Affects Versions: 9.0
>            Reporter: mike duigou
>            Assignee: mike duigou
>            Priority: Minor
>              Labels: pull-request-available
>          Time Spent: 1h
>  Remaining Estimate: 0h
>
> This issue recreates [https://netbeans.org/bugzilla/show_bug.cgi?id=269050 Netbeans bug 269050]. New bug database, new hope for integration!
> Currently the java source reformatter (java.source.base org.netbeans.modules.java.source.save.Reformatter) does not treat try and synchronized blocks as blocks when it encounters them with control structures. So
> {code:java}
> if (foo == bar) try {
>    baz();
> } catch (Exception all) {
>    log.(....);
> }
> {code}
> is reformatted as :
> {code:java}
> if (foo == bar) {
>   try {
>     baz();
>   } catch (Exception all) {
>     log.(....);
>   }
> }
> {code}
> The additional added basic block layer is not needed as the try is already a block. The same applies for a synchronized block as well.
> {code:java}
> if (foo == bar) synchronized(quux) {
>    baz();
> }
> {code}
> is currently reformatted as :
> {code:java}
> if (foo == bar) {
>   synchronized(quux) {
>     baz();
>   }
> }
> {code}
> In addition to "if/else" this formatting all affects other control structures such as "for", "for-each" and "while".
> Line breaks are preserved so existing source 
> {code:java}
> if (foo == bar) {
>   synchronized(quux) {
>     baz();
>   }
> }
> {code}
> will be reformatted with line breaks intact--only the braces will be removed 
> {code:java}
> if (foo == bar) 
>   synchronized(quux) {
>     baz();
>   }
> {code}



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