X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugVariable.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugVariable.java index d0e9062..9bd587e 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugVariable.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugVariable.java @@ -188,10 +188,6 @@ public class XDebugVariable extends XDebugElement implements IVariable/*, IWatc return (fNumChildren > 0); } - public boolean isArray() { - return (fValue.isArray()); - } - public String getEncoding() { return fEncoding; } @@ -216,10 +212,6 @@ public class XDebugVariable extends XDebugElement implements IVariable/*, IWatc return fNumChildren; } - public void setNumChildren(int numChildren) { - fNumChildren = numChildren; - } - public void setChange(IVariable oldVariable) throws DebugException { XDebugAbstractValue oldValue = null; IVariable[] newVariable = null;