forked from AdoptOpenJDK/IcedTea-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/origin/master' into extract_com…
…mon_xmlparser_functionality # Conflicts: # common/pom.xml # core/src/main/java/net/sourceforge/jnlp/runtime/JNLPClassLoader.java # core/src/main/java/net/sourceforge/jnlp/runtime/html/AppletExtractor.java # core/src/main/java/net/sourceforge/jnlp/security/dialogs/InetSecurity511Panel.java # core/src/main/java/net/sourceforge/jnlp/util/XDesktopEntry.java # core/src/test/java/net/sourceforge/jnlp/ServerAccess.java # xml-parser/src/main/java/net/adoptopenjdk/icedteaweb/xmlparser/MalformedXMLParser.java # xml-parser/src/main/java/net/adoptopenjdk/icedteaweb/xmlparser/ParseException.java
- Loading branch information
Showing
36 changed files
with
507 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,8 @@ | |
import net.sourceforge.jnlp.splashscreen.SplashPanel; | ||
import net.sourceforge.jnlp.splashscreen.SplashUtils; | ||
import net.sourceforge.jnlp.util.logging.OutputController; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
import sun.applet.AppletViewerPanelAccess; | ||
import sun.awt.SunToolkit; | ||
|
||
|
@@ -44,6 +46,9 @@ | |
* @author Francis Kung <[email protected]> | ||
*/ | ||
public class NetxPanel extends AppletViewerPanelAccess implements SplashController { | ||
|
||
private final static Logger LOG = LoggerFactory.getLogger(NetxPanel.class); | ||
|
||
private final PluginParameters parameters; | ||
private PluginBridge bridge = null; | ||
private AppletInstance appInst = null; | ||
|
@@ -137,11 +142,11 @@ protected synchronized void createAppletThread() { | |
synchronized (JNLPRuntime.initMutex) { | ||
//The custom NetX Policy and SecurityManager are set here. | ||
if (!JNLPRuntime.isInitialized()) { | ||
OutputController.getLogger().log("initializing JNLPRuntime..."); | ||
LOG.info("initializing JNLPRuntime..."); | ||
|
||
JNLPRuntime.initialize(false); | ||
} else { | ||
OutputController.getLogger().log("JNLPRuntime already initialized"); | ||
LOG.info("JNLPRuntime already initialized"); | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.