Just I want to understand the function call for the following functions
public class Program{
public void function1(){}
public void function2(){
//Some compute statment.
}
}
If we are calling function1() then JVM will make the call or not because it's empty function.