diff options
author | Harvey Harrison <[email protected]> | 2012-06-23 22:50:20 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2012-06-23 22:50:20 -0700 |
commit | 2cf582f96c5a7de34cd3de8439fe253092592703 (patch) | |
tree | e0e3888b25e794644e78561a866cfcb403efc081 | |
parent | 1783aa4055c86e2a52c5782c0974a835e4c36aed (diff) |
j3dcore: remove appletLauncher code, rely on JOGL to load native bits
Signed-off-by: Harvey Harrison <[email protected]>
-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 */ |