Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java
index 2401a8bcd..e8ea3d474 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java
@@ -45,19 +45,19 @@ public interface IDebugElement extends IAdaptable {
*
* @return the plug-in identifier
*/
- public String getModelIdentifier();
+ String getModelIdentifier();
/**
* Returns the debug target this element is contained in.
*
* @return the debug target this element is contained in
*/
- public IDebugTarget getDebugTarget();
+ IDebugTarget getDebugTarget();
/**
* Returns the launch this element is contained in.
*
* @return the launch this element is contained in
*/
- public ILaunch getLaunch();
+ ILaunch getLaunch();
}

Back to the top