public class WarningDemo { public static void main(String[] args){ Box bi; bi = createBox(); } static Box createBox(){ return new Box(); } }