Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/Decoration.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/Decoration.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/Decoration.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/Decoration.java
index 6f5cc4c71..2c0c2994c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/Decoration.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/Decoration.java
@@ -16,15 +16,15 @@ import org.eclipse.debug.core.model.IThread;
* A decoration in an editor, created by the debugger.
*/
public abstract class Decoration {
-
+
/**
* Removes this decoration
*/
public abstract void remove();
-
+
/**
* Returns the thread this decoration decorates.
- *
+ *
* @return thread associated with this decoration
*/
public abstract IThread getThread();

Back to the top