diff options
Diffstat (limited to 'libjava/javax/swing/WindowConstants.java')
-rw-r--r-- | libjava/javax/swing/WindowConstants.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/javax/swing/WindowConstants.java b/libjava/javax/swing/WindowConstants.java index 1eec7f6..3f9936c 100644 --- a/libjava/javax/swing/WindowConstants.java +++ b/libjava/javax/swing/WindowConstants.java @@ -51,22 +51,22 @@ public interface WindowConstants { /** * DO_NOTHING_ON_CLOSE */ - public static final int DO_NOTHING_ON_CLOSE = 0; + int DO_NOTHING_ON_CLOSE = 0; /** * HIDE_ON_CLOSE */ - public static final int HIDE_ON_CLOSE = 1; + int HIDE_ON_CLOSE = 1; /** * DISPOSE_ON_CLOSE */ - public static final int DISPOSE_ON_CLOSE = 2; + int DISPOSE_ON_CLOSE = 2; /** * EXIT_ON_CLOSE */ - public static final int EXIT_ON_CLOSE =3; + int EXIT_ON_CLOSE =3; } // WindowConstants |