Justin Bertram created ARTEMIS-5533:
---------------------------------------

             Summary: Use Objects.requireNonNull() where sensible
                 Key: ARTEMIS-5533
                 URL: https://issues.apache.org/jira/browse/ARTEMIS-5533
             Project: ActiveMQ Artemis
          Issue Type: Improvement
            Reporter: Justin Bertram
            Assignee: Justin Bertram


There are lots of places across the code-base which do a check like this:
{code:java}
if (foo == null) {
   throw new NullPointerException("foo should not be null");
}{code}
These can be simplified, e.g.:
{code:java}
Objects.requireNonNull(foo, "foo should not be null"){code}
Furthermore since {{requireNonNull}} returns the input some of these checks can 
be inlined with assignments.



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


Reply via email to