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 as object == null.
Describe the solution you'd like
Replace all null == object to object == null.
Are you willing to submit PR?
Code of Conduct