From: kruland2607 Date: Wed, 21 Dec 2011 16:22:28 +0000 (+0000) Subject: Change from fully qualified class name for ExceptionHandler to import statement. X-Git-Tag: upstream/12.03~1^2~231 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=895d47d306a8687f8b7dc04de1ef8fa66ad30c66;p=debian%2Fopenrocket Change from fully qualified class name for ExceptionHandler to import statement. git-svn-id: https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk@239 180e2498-e6e9-4542-8430-84ac67f01cd8 --- diff --git a/src/net/sf/openrocket/gui/main/SwingExceptionHandler.java b/src/net/sf/openrocket/gui/main/SwingExceptionHandler.java index b930e79e..dbaf437c 100644 --- a/src/net/sf/openrocket/gui/main/SwingExceptionHandler.java +++ b/src/net/sf/openrocket/gui/main/SwingExceptionHandler.java @@ -7,9 +7,10 @@ import net.sf.openrocket.gui.dialogs.BugReportDialog; import net.sf.openrocket.logging.LogHelper; import net.sf.openrocket.logging.TraceException; import net.sf.openrocket.startup.Application; +import net.sf.openrocket.startup.ExceptionHandler; -public class SwingExceptionHandler implements Thread.UncaughtExceptionHandler, net.sf.openrocket.startup.ExceptionHandler { +public class SwingExceptionHandler implements Thread.UncaughtExceptionHandler, ExceptionHandler { private static final LogHelper log = Application.getLogger();