From 4194479d0cc7aa75482d2072e4bf2b60b685258d Mon Sep 17 00:00:00 2001 From: Kevin Ruland Date: Wed, 21 Dec 2011 16:22:28 +0000 Subject: [PATCH] Change from fully qualified class name for ExceptionHandler to import statement. --- src/net/sf/openrocket/gui/main/SwingExceptionHandler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/net/sf/openrocket/gui/main/SwingExceptionHandler.java b/src/net/sf/openrocket/gui/main/SwingExceptionHandler.java index b930e79e1..dbaf437c4 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();