remove unused constructor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugResourceValue.java
index 4da322e..c74d74b 100644 (file)
@@ -3,13 +3,10 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugResourceValue extends XDebugAbstractValue {
-       public XDebugResourceValue(XDebugVariable variable, Node varNode, String typeName) {
+       public XDebugResourceValue(XDebugVariable variable, Node varNode,
+                       String typeName) {
                super(variable, varNode, typeName);
        }
-       
-       public XDebugResourceValue(XDebugVariable variable, String typeName) {
-               super(variable, typeName);
-       }
 
        public void setType(String typeName) {
                fType = XDebugAbstractValue.VALUETYPE_RESOURCE;
@@ -23,7 +20,7 @@ public class XDebugResourceValue extends XDebugAbstractValue {
        public boolean supportsValueModification() {
                return true;
        }
-       
+
        public boolean verifyValue(String expression) {
                return true;
        }