Using IntelliJ IDEA, How to inspect (lint) if the instance is not calling the method from its own class but from the super class?
I want to check (actually prohibit) the call of the method of the super class from the instance of its subclass.
How to inspect (lint) if the instance is not calling its own method but the one of its super class?
I want to check (actually prohibit) the call of the method of the super class from the instance of its subclass.