Java
JDK 7 Objects class: Check Nullity and throw NPE
In a developer life, we always have some places in the code where we test for an object to not be null before continuing a workflow or an action, it's safe to do it in order to avoid NullPointerException in Java. Kind of thing that can be made more simply now Read more...