With Java 7 you can now directly do a null safe equals:
Objects.equals(x, y)
(The Jakarta Commons library ObjectUtils.equals() has become obsolete with Java 7)
With Java 7 you can now directly do a null safe equals:
Objects.equals(x, y)
(The Jakarta Commons library ObjectUtils.equals() has become obsolete with Java 7)