Let's say I have this code:
public class MyClass {
public void doSomething(int value) {
}
}
public class MyNewClass {
public static void main(String args[]) {
MyClass myClass = new MyClass();
}
}
Would it be possible to get a compiler error that doSomething(int)
from MyClass
has not been called in MyNewClass
? I know realistically you would put that method in the constructor but this question is out of curiosity.