aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/icedteanp/java/sun/applet/PluginDebug.java
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2013-10-20 18:13:43 +0200
committerJiri Vanek <[email protected]>2013-10-20 18:13:43 +0200
commite6bc8857f80957b5b411493d2fbe9dac84293537 (patch)
treec20ddb4cae49a194ef24a781b5a4d3846335f63d /plugin/icedteanp/java/sun/applet/PluginDebug.java
parent72cc555dc703aa3f6a7338b5c3ade9fee7e799e3 (diff)
Minor fix in DEBUG initialisation
* netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java: (isPluginDebug) made private to prevent confusion. * plugin/icedteanp/java/sun/applet/PluginDebug.java: (DEBUG) initialized from JNLPRuntime.isDebug instead of incorrect JNLPRuntime.isPluginDebug.
Diffstat (limited to 'plugin/icedteanp/java/sun/applet/PluginDebug.java')
-rw-r--r--plugin/icedteanp/java/sun/applet/PluginDebug.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/icedteanp/java/sun/applet/PluginDebug.java b/plugin/icedteanp/java/sun/applet/PluginDebug.java
index 8de96f1..ef34ceb 100644
--- a/plugin/icedteanp/java/sun/applet/PluginDebug.java
+++ b/plugin/icedteanp/java/sun/applet/PluginDebug.java
@@ -42,7 +42,7 @@ import net.sourceforge.jnlp.util.logging.OutputController;
public class PluginDebug {
- static final boolean DEBUG = JNLPRuntime.isPluginDebug();
+ static final boolean DEBUG = JNLPRuntime.isDebug();
public static void debug(Object... messageChunks) {
if (DEBUG) {