removed unused methods: /net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge...
authorincastrix <incastrix>
Tue, 16 Sep 2008 16:44:15 +0000 (16:44 +0000)
committerincastrix <incastrix>
Tue, 16 Sep 2008 16:44:15 +0000 (16:44 +0000)
net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java
net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugVariable.java

index f60537c..96f14f2 100644 (file)
@@ -146,10 +146,6 @@ public abstract class XDebugAbstractValue  extends XDebugElement implements IVal
                return (fVariables.length > 0);
        }
        
-       public boolean isArray() {
-               return ((fType & VALUETYPE_ARRAY) > 0);
-       }
-       
        public abstract void setType(String typeName);
        public abstract void renderValueString(String data);
 
index d0e9062..9bd587e 100644 (file)
@@ -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;