[ 
https://issues.apache.org/jira/browse/ARTEMIS-5957?focusedWorklogId=1010190&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-1010190
 ]

ASF GitHub Bot logged work on ARTEMIS-5957:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 19/Mar/26 00:53
            Start Date: 19/Mar/26 00:53
    Worklog Time Spent: 10m 
      Work Description: clebertsuconic merged PR #6302:
URL: https://github.com/apache/artemis/pull/6302




Issue Time Tracking
-------------------

    Worklog Id:     (was: 1010190)
    Time Spent: 20m  (was: 10m)

> Ensure consistent style for one-line conditionals, etc.
> -------------------------------------------------------
>
>                 Key: ARTEMIS-5957
>                 URL: https://issues.apache.org/jira/browse/ARTEMIS-5957
>             Project: Artemis
>          Issue Type: Task
>            Reporter: Justin Bertram
>            Assignee: Justin Bertram
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> In many places across the code-base there are instance of things like this:
> {code:java}
> if (condition) ...;{code}
> {code:java}
> if (condition) 
>    ...;{code}
> {code:java}
> if (condition) {
>    ...;
> }{code}
> These should all use a consistent style like:
> {code:java}
> if (condition) {
>    ...;
> }{code}
> Checkstyle can enforce this for us using the {{NeedBraces}} module.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to