diff options
Diffstat (limited to 'src/test/com/jogamp/opengl/test/bugs/Bug735Inv3AppletAWT.java')
-rw-r--r-- | src/test/com/jogamp/opengl/test/bugs/Bug735Inv3AppletAWT.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/com/jogamp/opengl/test/bugs/Bug735Inv3AppletAWT.java b/src/test/com/jogamp/opengl/test/bugs/Bug735Inv3AppletAWT.java index 883a40345..83db15cf3 100644 --- a/src/test/com/jogamp/opengl/test/bugs/Bug735Inv3AppletAWT.java +++ b/src/test/com/jogamp/opengl/test/bugs/Bug735Inv3AppletAWT.java @@ -46,13 +46,13 @@ import com.jogamp.opengl.util.AnimatorBase; */ @SuppressWarnings("serial") public class Bug735Inv3AppletAWT extends Applet { - static public int AWT = 0; - static public int NEWT = 1; + static public final int AWT = 0; + static public final int NEWT = 1; - static public int APPLET_WIDTH = 500; - static public int APPLET_HEIGHT = 290; - static public int TOOLKIT = NEWT; - static public boolean IGNORE_AWT_REPAINT = false; + static public final int APPLET_WIDTH = 500; + static public final int APPLET_HEIGHT = 290; + static public final int TOOLKIT = NEWT; + static public final boolean IGNORE_AWT_REPAINT = false; static public boolean USE_ECT = false; static public int SWAP_INTERVAL = 1; |