Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/DebugModelPresentationContext.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/DebugModelPresentationContext.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/DebugModelPresentationContext.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/DebugModelPresentationContext.java
index 6779bd9c1..91006d479 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/DebugModelPresentationContext.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/DebugModelPresentationContext.java
@@ -16,17 +16,17 @@ import org.eclipse.ui.IWorkbenchPart;
/**
* A presentation context that has a debug model presentation.
- *
+ *
* @since 3.3
*/
public class DebugModelPresentationContext extends PresentationContext {
private IDebugModelPresentation fPresentation;
-
+
/**
* Constructs a presentation context for the given id using the
* specified model presentation.
- *
+ *
* @param id context id
* @param part workbench view
* @param presentation debug model presentation
@@ -35,7 +35,7 @@ public class DebugModelPresentationContext extends PresentationContext {
super(id, part);
fPresentation = presentation;
}
-
+
public IDebugModelPresentation getModelPresentation() {
return fPresentation;
}

Back to the top