diff options
author | Jiri Vanek <[email protected]> | 2013-10-20 18:13:43 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2013-10-20 18:13:43 +0200 |
commit | e6bc8857f80957b5b411493d2fbe9dac84293537 (patch) | |
tree | c20ddb4cae49a194ef24a781b5a4d3846335f63d /netx/net/sourceforge/jnlp | |
parent | 72cc555dc703aa3f6a7338b5c3ade9fee7e799e3 (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 'netx/net/sourceforge/jnlp')
-rw-r--r-- | netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java b/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java index 9045c83..a0744a0 100644 --- a/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java +++ b/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java @@ -755,7 +755,7 @@ public class JNLPRuntime { JNLPRuntime.ignoreHeaders = ignoreHeaders; } - public static boolean isPluginDebug() { + private static boolean isPluginDebug() { if (pluginDebug == null) { try { //there are cases when this itself is not allowed by security manager, and so |