I'm trying to test for null parameters but you cannot compare an object to null.
The following is dead code:
} else if(x == null){
throw new NullPointerException("Parameter is null");
}
How do I rewrite it to gain the desired effect?