RNU.THISAn RNU.THIS error indicates comparing 'this' with null, but this cannot be null. Mitigation and preventionRemove redundant check. Example 112 public void doSomethingStrange() { 13 if (this == null) { 14 System.err.println("this == null!"); 15 } 16 } RNU.THIS will be reported at line 13. Security guidelinesRelated checkers |