author: dpeugh author: This checks for excessive Null Assignments. author: For instance: author: public void foo() { author: Object x = null; // OK author: // Some stuff author: x = new Object(); // Also OK author: // Some more stuff author: x = null; // BAD author: }