/hg/release/icedtea-web-1.0: Print the arguments passed to the a...

omajid at icedtea.classpath.org omajid at icedtea.classpath.org
Thu Dec 8 13:43:24 PST 2011


changeset 8cb4e38427cc in /hg/release/icedtea-web-1.0
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.0?cmd=changeset;node=8cb4e38427cc
author: Omair Majid <omajid at redhat.com>
date: Thu Dec 08 16:20:51 2011 -0500

	Print the arguments passed to the application's main method

	2011-12-08 Omair Majid <omajid at redhat.com>

	 * netx/net/sourceforge/jnlp/Launcher.java
	(launchApplication): Print arguments being passed to the
	application's main method in debug mode.


diffstat:

 ChangeLog                               |  6 ++++++
 netx/net/sourceforge/jnlp/Launcher.java |  5 +++++
 2 files changed, 11 insertions(+), 0 deletions(-)

diffs (35 lines):

diff -r 8d2ac271064f -r 8cb4e38427cc ChangeLog
--- a/ChangeLog	Fri Oct 28 17:27:54 2011 -0400
+++ b/ChangeLog	Thu Dec 08 16:20:51 2011 -0500
@@ -1,3 +1,9 @@
+2011-12-08  Omair Majid  <omajid at redhat.com>
+
+	* netx/net/sourceforge/jnlp/Launcher.java
+	(launchApplication): Print arguments being passed to the application's
+	main method in debug mode.
+
 2011-10-28  Deepak Bhole <dbhole at redhat.com>
 
 	* configure.ac: Prepare for 1.0.7
diff -r 8d2ac271064f -r 8cb4e38427cc netx/net/sourceforge/jnlp/Launcher.java
--- a/netx/net/sourceforge/jnlp/Launcher.java	Fri Oct 28 17:27:54 2011 -0400
+++ b/netx/net/sourceforge/jnlp/Launcher.java	Thu Dec 08 16:20:51 2011 -0500
@@ -32,6 +32,7 @@
 import java.net.UnknownHostException;
 import java.nio.channels.FileChannel;
 import java.nio.channels.FileLock;
+import java.util.Arrays;
 import java.util.LinkedList;
 import java.util.List;
 import java.util.jar.JarFile;
@@ -476,6 +477,10 @@
             }
 
             main.setAccessible(true);
+
+            if (JNLPRuntime.isDebug()) {
+                System.out.println("Invoking main() with args: " + Arrays.toString(args));
+            }
             main.invoke(null, new Object[] { args });
 
             return app;



More information about the distro-pkg-dev mailing list