changeset in /hg/icedtea6: 2008-06-27 Joshua Sumali <jsumali at r...
Joshua Sumali
jsumali at redhat.com
Fri Jun 27 08:20:21 PDT 2008
changeset ade100ee196f in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=ade100ee196f
description:
2008-06-27 Joshua Sumali <jsumali at redhat.com>
* rt/net/sourceforge/jnlp/Launcher.java: Exit the application if there was
a LaunchException caught.
diffstat:
2 files changed, 7 insertions(+)
ChangeLog | 5 +++++
rt/net/sourceforge/jnlp/Launcher.java | 2 ++
diffs (24 lines):
diff -r 94600a542e3f -r ade100ee196f ChangeLog
--- a/ChangeLog Thu Jun 26 16:18:20 2008 -0400
+++ b/ChangeLog Fri Jun 27 11:20:02 2008 -0400
@@ -1,3 +1,8 @@ 2008-06-26 Joshua Sumali <jsumali at redh
+2008-06-27 Joshua Sumali <jsumali at redhat.com>
+
+ * rt/net/sourceforge/jnlp/Launcher.java: Exit the application if there was
+ a LaunchException caught.
+
2008-06-26 Joshua Sumali <jsumali at redhat.com>
* README: Removed documentation about --enable-netx-plugin. This feature
diff -r 94600a542e3f -r ade100ee196f rt/net/sourceforge/jnlp/Launcher.java
--- a/rt/net/sourceforge/jnlp/Launcher.java Thu Jun 26 16:18:20 2008 -0400
+++ b/rt/net/sourceforge/jnlp/Launcher.java Fri Jun 27 11:20:02 2008 -0400
@@ -593,6 +593,8 @@ public class Launcher {
}
catch (LaunchException ex) {
exception = ex;
+ // Exit if we can't launch the application.
+ System.exit(0);
}
}
More information about the distro-pkg-dev
mailing list