From 2cf582f96c5a7de34cd3de8439fe253092592703 Mon Sep 17 00:00:00 2001 From: Harvey Harrison Date: Sat, 23 Jun 2012 22:50:20 -0700 Subject: j3dcore: remove appletLauncher code, rely on JOGL to load native bits Signed-off-by: Harvey Harrison --- src/classes/share/javax/media/j3d/MasterControl.java | 16 ---------------- 1 file changed, 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"). @@ -1229,14 +1221,6 @@ class MasterControl { return isWindowsOs; } - /** - * 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 -- cgit v1.2.3