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

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


changeset d494ec44a194 in /hg/release/icedtea-web-1.1
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.1?cmd=changeset;node=d494ec44a194
author: Omair Majid <omajid at redhat.com>
date: Thu Dec 08 16:09:22 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 452aa7fc0e7f -r d494ec44a194 ChangeLog
--- a/ChangeLog	Fri Oct 28 17:28:53 2011 -0400
+++ b/ChangeLog	Thu Dec 08 16:09:22 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-09-28  Deepak Bhole <dbhole at redhat.com>
 
 	* NEWS: Prepare for 1.1.5
diff -r 452aa7fc0e7f -r d494ec44a194 netx/net/sourceforge/jnlp/Launcher.java
--- a/netx/net/sourceforge/jnlp/Launcher.java	Fri Oct 28 17:28:53 2011 -0400
+++ b/netx/net/sourceforge/jnlp/Launcher.java	Thu Dec 08 16:09:22 2011 -0500
@@ -25,6 +25,7 @@
 import java.net.InetAddress;
 import java.net.URL;
 import java.net.UnknownHostException;
+import java.util.Arrays;
 import java.util.LinkedList;
 import java.util.List;
 import java.util.Map;
@@ -587,6 +588,10 @@
             handler.launchStarting(app);
 
             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