Index: javax/swing/JApplet.java =================================================================== RCS file: /cvsroot/classpath/classpath/javax/swing/JApplet.java,v retrieving revision 1.10 diff -u -r1.10 JApplet.java --- javax/swing/JApplet.java 25 Sep 2004 19:21:05 -0000 1.10 +++ javax/swing/JApplet.java 25 Sep 2004 19:29:56 -0000 @@ -188,25 +188,25 @@ { case WindowEvent.WINDOW_CLOSING: { - switch (close_action) - { - case EXIT_ON_CLOSE: - { - System.out.println("user requested exit on close"); - System.exit(1); - break; - } - case DISPOSE_ON_CLOSE: - { - System.out.println("user requested dispose on close"); - //dispose(); - break; - } - case HIDE_ON_CLOSE: - case DO_NOTHING_ON_CLOSE: - break; - } - break; + switch (close_action) + { + case EXIT_ON_CLOSE: + { + System.out.println("user requested exit on close"); + System.exit(1); + break; + } + case DISPOSE_ON_CLOSE: + { + System.out.println("user requested dispose on close"); + //dispose(); + break; + } + case HIDE_ON_CLOSE: + case DO_NOTHING_ON_CLOSE: + break; + } + break; } case WindowEvent.WINDOW_CLOSED: case WindowEvent.WINDOW_OPENED: @@ -214,7 +214,7 @@ case WindowEvent.WINDOW_DEICONIFIED: case WindowEvent.WINDOW_ACTIVATED: case WindowEvent.WINDOW_DEACTIVATED: - break; + break; } }