Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/IStatusHandler.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/IStatusHandler.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/IStatusHandler.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/IStatusHandler.java
index 571b06408..3306fdf62 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/IStatusHandler.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/IStatusHandler.java
@@ -4,13 +4,13 @@
* 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
*******************************************************************************/
package org.eclipse.debug.core;
-
+
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
@@ -35,7 +35,7 @@ import org.eclipse.core.runtime.IStatus;
* Following is an example definition of a status handler extension.
* <pre>
* &lt;extension point="org.eclipse.debug.core.statusHandlers"&gt;
- * &lt;statusHandler
+ * &lt;statusHandler
* id="com.example.ExampleIdentifier"
* class="com.example.ExampleStatusHandler"
* plugin="com.example.ExamplePluginId"
@@ -67,7 +67,7 @@ public interface IStatusHandler {
/**
* Notifies this status handler that the given status has been
* generated by the specified source object and requires resolution.
- *
+ *
* @param status the status to handle
* @param source the object delegating to this status handler
* the given status

Back to the top