diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java index 7ea6638ebfa..429b3853603 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java @@ -174,14 +174,6 @@ public interface ICDITarget extends ICDIObject */ void suspend() throws CDIException; - /* - * Returns whether this target is is currently stepping. - * - * @return whether this target is currently stepping - - boolean isStepping(); - */ - /** * Steps over the current source line. Can only be called * when the associated target is suspended. diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java index f5b90231ee3..52b86fd3f62 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java @@ -52,14 +52,6 @@ public interface ICDIThread extends ICDIObject */ void suspend() throws CDIException; - /* - * Returns whether this thread is is currently stepping. - * - * @return whether this thread is currently stepping - * - boolean isStepping(); - */ - /** * Steps over the current source line. Can only be called * when the associated thread is suspended.