diff options
Diffstat (limited to 'src/classes')
-rw-r--r-- | src/classes/share/javax/media/j3d/MasterControl.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/classes/share/javax/media/j3d/MasterControl.java b/src/classes/share/javax/media/j3d/MasterControl.java index 201fe23..4c987b8 100644 --- a/src/classes/share/javax/media/j3d/MasterControl.java +++ b/src/classes/share/javax/media/j3d/MasterControl.java @@ -103,10 +103,6 @@ class MasterControl { // Flag indicating that the rendering pipeline libraries are loaded private static boolean librariesLoaded = false; - // Issue 257: flag indicating that we are running in "appletLauncher" mode - // and should use JNLPAppletLauncher to load any native libraries - private static boolean appletLauncher = false; - /** * reference to MasterControl thread */ @@ -877,10 +873,6 @@ class MasterControl { boolean isWindowsVista = isWindowsOs && osName.indexOf("vista") != -1; boolean is64Bit = (sunArchDataModel != null) && sunArchDataModel.equals("64"); - // Issue 257: check to see if the sun.jnlp.applet.launcher property is set to true - String sunAppletLauncher = getProperty("sun.jnlp.applet.launcher"); - appletLauncher = Boolean.valueOf(sunAppletLauncher); - if (isCoreLoggable(Level.CONFIG)) { StringBuffer strBuf = new StringBuffer(); strBuf.append("MasterControl.loadLibraries()\n"). @@ -1230,14 +1222,6 @@ class MasterControl { } /** - * Returns a flag indicating whether the sun.jnlp.applet.launcher system - * property is set to true. - */ - static boolean isAppletLauncher() { - return appletLauncher; - } - - /** * This method increments and returns the next time value * timeLock must get before this procedure is invoked */ |