You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Pieter van den Hombergh (Jira)" <ji...@apache.org> on 2021/04/25 17:01:00 UTC

[jira] [Updated] (NETBEANS-5327) closing bracket stays indented in source+format on record class.

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

Pieter van den Hombergh updated NETBEANS-5327:
----------------------------------------------
    Description: 
Normally the source formatter puts the class-closing brace 
at the start of the line.
This is not the case for java 14+ (preview) record types. Tested on 12.2 and 12.3-beta2 and 1.4-beta1

Formatting happens when you select soure>format or ctrl+shift+f (linux, windows).
The problem appears to be related to the canonical constructor definition _before_ the opening braces, because my normal setting
to put white space before closing parenthesis is also ignored.

{code:java}
// Some comments here
public record IntegerRange( Integer start, Integer end) implements // closing parens should be preceded 
        Range<IntegerRange, Integer, Integer> {   //   by whitespace with my settings

    } // offending line, not undented to column 1

{code}


  was:
Normally the source formatter puts the class-closing brace 
at the start of the line.
This is not the case for java 14+ (preview) record types. Testes on 12.2 and 12.3-beta2 

Formatting happens when you select soure>format or ctrl+shift+f (linux, windows).
The problem appears to be related to the canonical constructor definition _before_ the opening braces, because my normal setting
to put white space before closing parenthesis is also ignored.

{code:java}
// Some comments here
public record IntegerRange( Integer start, Integer end) implements // closing parens should be preceded 
        Range<IntegerRange, Integer, Integer> {   //   by whitespace with my settings

    } // offending line, not undented to column 1

{code}



> closing bracket stays indented in source+format on record class. 
> -----------------------------------------------------------------
>
>                 Key: NETBEANS-5327
>                 URL: https://issues.apache.org/jira/browse/NETBEANS-5327
>             Project: NetBeans
>          Issue Type: Improvement
>          Components: editor - Formatting &amp; Indentation
>    Affects Versions: 12.2, 12.3
>         Environment: ubuntu 20.04 jjdk16 ea netbeans 12.2 and 12.3-beta2
>            Reporter: Pieter van den Hombergh
>            Priority: Minor
>
> Normally the source formatter puts the class-closing brace 
> at the start of the line.
> This is not the case for java 14+ (preview) record types. Tested on 12.2 and 12.3-beta2 and 1.4-beta1
> Formatting happens when you select soure>format or ctrl+shift+f (linux, windows).
> The problem appears to be related to the canonical constructor definition _before_ the opening braces, because my normal setting
> to put white space before closing parenthesis is also ignored.
> {code:java}
> // Some comments here
> public record IntegerRange( Integer start, Integer end) implements // closing parens should be preceded 
>         Range<IntegerRange, Integer, Integer> {   //   by whitespace with my settings
>     } // offending line, not undented to column 1
> {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