All Downloads are FREE. Search and download functionalities are using the official Maven repository.

repairability_test_files.NPEfix.NPEfix5.five.NPEfix5_five_s Maven / Gradle / Ivy

The newest version!

class NPEfix {

    public static void main (String[] args) {

        hello();

        void hello(){
            String ptr2 = "hi";
            String ptr = null;

            if (ptr.equals("gfg"))
                System.out.print("Same");
            else
                System.out.print("Not Same");
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy