[
https://issues.apache.org/jira/browse/ARTEMIS-5535?focusedWorklogId=972651&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-972651
]
ASF GitHub Bot logged work on ARTEMIS-5535:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 11/Jun/25 19:33
Start Date: 11/Jun/25 19:33
Worklog Time Spent: 10m
Work Description: jbertram opened a new pull request, #5772:
URL: https://github.com/apache/activemq-artemis/pull/5772
(no comment)
Issue Time Tracking
-------------------
Worklog Id: (was: 972651)
Remaining Estimate: 0h
Time Spent: 10m
> Use Objects.toString() instead of ternary operator
> --------------------------------------------------
>
> Key: ARTEMIS-5535
> URL: https://issues.apache.org/jira/browse/ARTEMIS-5535
> Project: ActiveMQ Artemis
> Issue Type: Task
> Reporter: Justin Bertram
> Assignee: Justin Bertram
> Priority: Major
> Labels: pull-request-available
> Time Spent: 10m
> Remaining Estimate: 0h
>
> There are lots of places across the code-base which do a check like this:
> {code:java}
> foo != null ? foo.toString() : null{code}
> or
> {code:java}
> foo == null ? null : foo.toString(){code}
> These can be replaced, e.g.:
> {code:java}
> Objects.toString(foo){code}
> This code is more clear and will make the code-base more consistent overall.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact