Remove unused constructor.
authorincastrix <incastrix>
Tue, 16 Sep 2008 18:19:25 +0000 (18:19 +0000)
committerincastrix <incastrix>
Tue, 16 Sep 2008 18:19:25 +0000 (18:19 +0000)
net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java

index 5056d77..3899a24 100644 (file)
@@ -43,15 +43,7 @@ public abstract class XDebugAbstractValue  extends XDebugElement implements IVal
        
        private boolean fhasChanged;
 
-       public XDebugAbstractValue(XDebugVariable  variable, String typeName) {
-               super((XDebugTarget) variable.getDebugTarget());
-               fVariable = variable;
-               setType(typeName);
-               fVariables= new IVariable[0];
-       }
-
-       
-       public XDebugAbstractValue(XDebugVariable  variable,Node varNode,String typeName) {
+       public XDebugAbstractValue(XDebugVariable variable, Node varNode, String typeName) {
                super((XDebugTarget) variable.getDebugTarget());
                fVariable = variable;
                if (varNode==null){