I was just discussing about calling static methods using class name with my friend and tried out this code and expected it to throw NPE at runtime.but as it turn out it dint
method is static so it doesn't care about the One instance.
method
One
One o = null; o.method();
Is the same as:
One.method();