See More

public class ForwardNullExample { public static Object callA() { // This causes a FORWARD_NULL defect report123 return testA(null); } public static Object callB() { // No defect report return testA(new Object()); } public static String testA(Object o) { return o.toString(); } }