-
Task
-
Resolution: Done
-
Minor
-
None
-
None
In ejb3 DeploymentModuleIdentifier.equals(...) method, the following line can be simplified with Objects.equals(...) method:
if (distinctName != null ? !distinctName.equals(that.distinctName) : that.distinctName != null) return false;
-->
if (!Objects.equals(distinctName, that.distinctName)) return false;