[Enhancement] Unify all null == object
usage to standard object == null
#4808
Labels
enhancement
New feature or request
Search before asking
Enhancement Request
The usage of
null == object
is a legacy convention from the C language era. In Java, this syntax is not supported by any specifications (see the discussion below). Therefore, it is better to standardize it asobject == null
.Describe the solution you'd like
Replace all
null == object
toobject == null
.Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: