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