Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.tests/src/org/eclipse/debug/tests/statushandlers/StatusHandlerTests.java')
-rw-r--r--org.eclipse.debug.tests/src/org/eclipse/debug/tests/statushandlers/StatusHandlerTests.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/statushandlers/StatusHandlerTests.java b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/statushandlers/StatusHandlerTests.java
index e1c68a0c9..c425ac0c0 100644
--- a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/statushandlers/StatusHandlerTests.java
+++ b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/statushandlers/StatusHandlerTests.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -25,12 +25,12 @@ import org.eclipse.debug.tests.TestsPlugin;
* Tests status handlers
*/
public class StatusHandlerTests extends TestCase {
-
+
/**
* Status for which a handler is registered.
*/
public static final IStatus STATUS = new Status(IStatus.ERROR, TestsPlugin.PLUGIN_ID, 333, "", null); //$NON-NLS-1$
-
+
/**
* Tests that a status handler extension exists
*/
@@ -39,7 +39,7 @@ public class StatusHandlerTests extends TestCase {
assertNotNull("missing status handler extension", handler); //$NON-NLS-1$
assertTrue("Unexpected handler", handler instanceof StatusHandler); //$NON-NLS-1$
}
-
+
/**
* Tests that status handlers are not returned when preference is disabled
*/

Back to the top