X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java index 26e1263..9b0a57e 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java @@ -27,7 +27,7 @@ public abstract class XDebugAbstractValue extends XDebugElement implements IVal protected String fTypeName; private boolean fhasChanged; - public XDebugAbstractValue(XDebugStackFrame frame, Node varNode) { + public XDebugAbstractValue(XDebugStackFrame frame, Node varNode) { super((XDebugTarget) frame.getDebugTarget()); fTypeName = PHPDebugUtils.getAttributeValue(varNode,"type"); @@ -74,14 +74,6 @@ public abstract class XDebugAbstractValue extends XDebugElement implements IVal return fhasChanged; } - public void sethasChanged(boolean hasChanged) { - fhasChanged = hasChanged; - } - - public void setChildVariables(IVariable[] newChildVariables) { - fVariables = newChildVariables; - } - /* (non-Javadoc) * @see org.eclipse.debug.core.model.IValue#getReferenceTypeName() */