/hg/icedtea-web: only print debug output when not null

omajid at icedtea.classpath.org omajid at icedtea.classpath.org
Tue Jan 4 10:09:15 PST 2011


changeset 8e1b7bb5f2fc in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=8e1b7bb5f2fc
author: Omair Majid <omajid at redhat.com>
date: Tue Jan 04 13:08:25 2011 -0500

	only print debug output when not null

	2011-01-04 Omair Majid <omajid at redhat.com>

	 * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
	(installShutdownHooks): Only print when not null.


diffstat:

2 files changed, 8 insertions(+), 4 deletions(-)
ChangeLog                                              |    5 +++++
netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java |    7 +++----

diffs (35 lines):

diff -r 5c8851b13c04 -r 8e1b7bb5f2fc ChangeLog
--- a/ChangeLog	Tue Jan 04 11:23:15 2011 -0500
+++ b/ChangeLog	Tue Jan 04 13:08:25 2011 -0500
@@ -1,3 +1,8 @@ 2011-01-04  Andrew Su  <asu at redhat.com>
+2011-01-04  Omair Majid  <omajid at redhat.com>
+
+	* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
+	(installShutdownHooks): Only print when not null.
+
 2011-01-04  Andrew Su  <asu at redhat.com>
 
 	* netx/net/sourceforge/jnlp/controlpanel/SecuritySettingsPanel.java:
diff -r 5c8851b13c04 -r 8e1b7bb5f2fc netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Tue Jan 04 11:23:15 2011 -0500
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Tue Jan 04 13:08:25 2011 -0500
@@ -182,16 +182,15 @@ public class JNLPClassLoader extends URL
         Runtime.getRuntime().addShutdownHook(new Thread() {
             @Override
             public void run() {
-                if (JNLPRuntime.isDebug()) {
-                    System.out.println("Cleaning up native directory" + nativeDir.getAbsolutePath());
-                }
-
                 /*
                  * Delete only the native dir created by this classloader (if
                  * there is one). Other classloaders (parent, peers) will all
                  * cleanup things they created
                  */
                 if (nativeDir != null) {
+                    if (JNLPRuntime.isDebug()) {
+                        System.out.println("Cleaning up native directory" + nativeDir.getAbsolutePath());
+                    }
                     try {
                         FileUtils.recursiveDelete(nativeDir,
                                 new File(System.getProperty("java.io.tmpdir")));



More information about the distro-pkg-dev mailing list