/hg/icedtea-web: Minor fix in DEBUG initialisation
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Sun Oct 20 09:13:45 PDT 2013
changeset 594622144855 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=594622144855
author: Jiri Vanek <jvanek at redhat.com>
date: Sun Oct 20 18:13:43 2013 +0200
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:
ChangeLog | 7 +++++++
netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java | 2 +-
plugin/icedteanp/java/sun/applet/PluginDebug.java | 2 +-
3 files changed, 9 insertions(+), 2 deletions(-)
diffs (38 lines):
diff -r bde9b562c85e -r 594622144855 ChangeLog
--- a/ChangeLog Thu Oct 17 10:32:46 2013 -0400
+++ b/ChangeLog Sun Oct 20 18:13:43 2013 +0200
@@ -1,3 +1,10 @@
+2013-10-20 Jiri Vanek <jvanek at redhat.com>
+
+ * 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.
+
2013-10-17 Andrew Azores <aazores at redhat.com>
Back out changeset 420d72e5cee7 due to breaking LiveConnect feature.
diff -r bde9b562c85e -r 594622144855 netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java Thu Oct 17 10:32:46 2013 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java Sun Oct 20 18:13:43 2013 +0200
@@ -755,7 +755,7 @@
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
diff -r bde9b562c85e -r 594622144855 plugin/icedteanp/java/sun/applet/PluginDebug.java
--- a/plugin/icedteanp/java/sun/applet/PluginDebug.java Thu Oct 17 10:32:46 2013 -0400
+++ b/plugin/icedteanp/java/sun/applet/PluginDebug.java Sun Oct 20 18:13:43 2013 +0200
@@ -42,7 +42,7 @@
public class PluginDebug {
- static final boolean DEBUG = JNLPRuntime.isPluginDebug();
+ static final boolean DEBUG = JNLPRuntime.isDebug();
public static void debug(Object... messageChunks) {
if (DEBUG) {
More information about the distro-pkg-dev
mailing list