Possible Duplicate:
Null check in Java
I'm just wondering what's the difference between
if (null == something) {...}
and
if (something == null) {...}
assuming that in both cases something
is the same object. Presumably, there should be non, except for readability of the code.