diff options
author | Andrew Azores <aazores@redhat.com> | 2013-07-25 15:42:41 -0400 |
---|---|---|
committer | Andrew Azores <aazores@redhat.com> | 2013-07-25 15:42:41 -0400 |
commit | d6640132c7d1cc6fe2849e26a8d3260d468d726f (patch) | |
tree | 7e78a5f8fc9c075cd2031bf92d4544e6d0746486 /netx/net/sourceforge/jnlp/runtime/Boot.java | |
parent | c3bd36b237a7e2fa69c2dc919d87f2b11bd3c332 (diff) |
Cleaned up "throws IOException" from HTMLPanel constructor and try/catches elsewhere which handled this
Diffstat (limited to 'netx/net/sourceforge/jnlp/runtime/Boot.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/runtime/Boot.java | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/netx/net/sourceforge/jnlp/runtime/Boot.java b/netx/net/sourceforge/jnlp/runtime/Boot.java index 156b024..fcd87b8 100644 --- a/netx/net/sourceforge/jnlp/runtime/Boot.java +++ b/netx/net/sourceforge/jnlp/runtime/Boot.java @@ -19,7 +19,6 @@ package net.sourceforge.jnlp.runtime; import static net.sourceforge.jnlp.runtime.Translator.R; import java.io.File; -import java.io.IOException; import java.net.URL; import java.security.AccessController; import java.security.PrivilegedAction; @@ -158,13 +157,8 @@ public final class Boot implements PrivilegedAction<Void> { System.exit(0); } else { System.out.println(R("BLaunchAbout")); - try { - AboutDialog.display(); - return; - } catch (IOException e) { - System.out.println(R("BLaunchAboutFailure")); - throw new RuntimeException(e); - } + AboutDialog.display(); + return; } } |