repairability_test_files.NPEfix.NPEfix2.two.NPEfix2_two_s Maven / Gradle / Ivy
The newest version!
class NPEfix {
public static void main (String[] args) {
String ptr = null;
if (ptr.equals("gfg"))
System.out.print("Same");
else
System.out.print("Not Same");
}
}