From 19225a21d8d2a2e09f166f8f1f0411f3f934b9a0 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 12 Jun 2013 17:31:29 +0200 Subject: Fix my sloppy commit f50caa5241b5eef286e8c10b74b5297e5821da2b: Didn't intend to take out the commented out 'final', but to enable the qualifier. Duh! Thank's to Harvey (again) for catching my odd work! --- src/jogl/classes/javax/media/opengl/GLContext.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jogl/classes/javax/media/opengl/GLContext.java b/src/jogl/classes/javax/media/opengl/GLContext.java index 2c7bc83c9..7f8213992 100644 --- a/src/jogl/classes/javax/media/opengl/GLContext.java +++ b/src/jogl/classes/javax/media/opengl/GLContext.java @@ -1209,12 +1209,12 @@ public abstract class GLContext { /** * @see #getDeviceVersionAvailableKey(javax.media.nativewindow.AbstractGraphicsDevice, int, int) */ - protected static IdentityHashMap deviceVersionAvailable = new IdentityHashMap(); + protected static final IdentityHashMap deviceVersionAvailable = new IdentityHashMap(); /** * @see #getUniqueDeviceString(javax.media.nativewindow.AbstractGraphicsDevice) */ - private static IdentityHashMap deviceVersionsAvailableSet = new IdentityHashMap(); + private static final IdentityHashMap deviceVersionsAvailableSet = new IdentityHashMap(); /** clears the device/context mappings as well as the GL/GLX proc address tables. */ protected static void shutdown() { -- cgit v1.2.3