From 369b1b1f4faa01104eae88d512adce527295e8e6 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Fri, 9 Aug 2002 18:05:31 +0000 Subject: [PATCH] remove the set*() methods not needed. --- .../org/eclipse/cdt/debug/core/cdi/ICCondition.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java index 4a10d83839a..952cd8d277b 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java @@ -21,13 +21,6 @@ public interface ICCondition */ String getExpression(); - /** - * Sets the condition's expression. - * - * @param expression - an expression to set - */ - void setExpression( String expression ); - /** * Returns the ignore count of this condition. * @@ -35,10 +28,4 @@ public interface ICCondition */ int getIgnoreCount(); - /** - * Sets the ignore count of this condition. - * - * @param ignoreCount - a number to set - */ - void setIgnoreCount( int ignoreCount ); }