/hg/icedtea6: netx: use getMethod instead of getDeclaredMethod t...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Thu Aug 5 14:41:19 PDT 2010
changeset e9de4114620e in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=e9de4114620e
author: Omair Majid <omajid at redhat.com>
date: Thu Aug 05 17:40:41 2010 -0400
netx: use getMethod instead of getDeclaredMethod to find main method
2010-08-05 Omair Majid <omajid at redhat.com>
* NEWS: Update with netx bugfix.
* netx/net/sourceforge/jnlp/Launcher.java (launchApplication):
Replace use of getDeclaredMethod with getMethod. Fixes
applications that have a main-class that inherits
main(String[]).
diffstat:
3 files changed, 10 insertions(+), 1 deletion(-)
ChangeLog | 8 ++++++++
NEWS | 1 +
netx/net/sourceforge/jnlp/Launcher.java | 2 +-
diffs (38 lines):
diff -r 6530d2aa9076 -r e9de4114620e ChangeLog
--- a/ChangeLog Thu Aug 05 16:58:30 2010 +0100
+++ b/ChangeLog Thu Aug 05 17:40:41 2010 -0400
@@ -1,3 +1,11 @@ 2010-08-05 Andrew John Hughes <ahughes
+2010-08-05 Omair Majid <omajid at redhat.com>
+
+ * NEWS: Update with netx bugfix.
+ * netx/net/sourceforge/jnlp/Launcher.java
+ (launchApplication): Replace use of getDeclaredMethod with
+ getMethod. Fixes applications that have a main-class that
+ inherits main(String[]).
+
2010-08-05 Andrew John Hughes <ahughes at redhat.com>
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560056
diff -r 6530d2aa9076 -r e9de4114620e NEWS
--- a/NEWS Thu Aug 05 16:58:30 2010 +0100
+++ b/NEWS Thu Aug 05 17:40:41 2010 -0400
@@ -717,6 +717,7 @@ New in release 1.9 (2010-XX-XX):
- Do not use Look and Feel related methods for setting up security dialogs
- Minor fixes to JNLPRandomAccessFile
- Fix browser command in BasicService.showDocument(URL)
+ - Run programs that inherit main(String[]) in their main-class
New in release 1.8.1 (2010-07-28):
diff -r 6530d2aa9076 -r e9de4114620e netx/net/sourceforge/jnlp/Launcher.java
--- a/netx/net/sourceforge/jnlp/Launcher.java Thu Aug 05 16:58:30 2010 +0100
+++ b/netx/net/sourceforge/jnlp/Launcher.java Thu Aug 05 17:40:41 2010 -0400
@@ -441,7 +441,7 @@ public class Launcher {
Class mainClass = app.getClassLoader().loadClass(mainName);
- Method main = mainClass.getDeclaredMethod("main", new Class[] {String[].class} );
+ Method main = mainClass.getMethod("main", new Class[] {String[].class} );
String args[] = file.getApplication().getArguments();
SwingUtilities.invokeAndWait(new Runnable() {
More information about the distro-pkg-dev
mailing list