1 public class EmptyAfterMethod {2 3 public static void main(String [] args) {4 EmptyAfterMethod eam = new EmptyAfterMethod();5 ;; 6 eam.init();7 }8 9 protected void init(){};10 }11