From e945252b3c479fd0594e4f5bdd8ec7bf38a64b53 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 28 Oct 2004 19:08:00 +0000 Subject: [PATCH] remove getType() --- .../eclipse/cdt/debug/core/cdi/model/ICDIExpression.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIExpression.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIExpression.java index 138172fb4e2..f7cc765f8e8 100644 --- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIExpression.java +++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIExpression.java @@ -47,12 +47,4 @@ public interface ICDIExpression extends ICDIObject { */ ICDIValue getValue(ICDIStackFrame context) throws CDIException; - /** - * Return the type of this expression - * - * @param context frame context - * @return - * @throws CDIException - */ - ICDIType getType(ICDIStackFrame context) throws CDIException; }