My code is breaking on the following line with a nullpointerexception:
if (stringVariable.equals(null)){
Previous to this statement, I declare the stringVariable and set it to a database field.
In this statement, I am trying to detect if the field had a null value, but unfortunately it breaks!
Any thoughts?
equals()isn't special, it will still throw a NPE. – Joachim Sauer Mar 1 '10 at 18:23