/hg/icedtea-web: Print the arguments passed to the application's...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Thu Dec 8 13:02:03 PST 2011
changeset fb5e54f2b97e in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=fb5e54f2b97e
author: Omair Majid <omajid at redhat.com>
date: Thu Dec 08 16:01:06 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 df87375f72cd -r fb5e54f2b97e ChangeLog
--- a/ChangeLog Mon Dec 05 13:15:32 2011 -0500
+++ b/ChangeLog Thu Dec 08 16:01:06 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-12-05 Danesh Dadachanji <ddadacha at redhat.com>
Update UI for AccessWarningPane
diff -r df87375f72cd -r fb5e54f2b97e netx/net/sourceforge/jnlp/Launcher.java
--- a/netx/net/sourceforge/jnlp/Launcher.java Mon Dec 05 13:15:32 2011 -0500
+++ b/netx/net/sourceforge/jnlp/Launcher.java Thu Dec 08 16:01:06 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;
@@ -586,6 +587,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