remove unused constructor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugResourceValue.java
index 2ce4f1c..c74d74b 100644 (file)
@@ -3,18 +3,10 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugResourceValue extends XDebugAbstractValue {
-       private String fDataString;
-       
-       public XDebugResourceValue(XDebugVariable variable, Node varNode, String typeName) {
+       public XDebugResourceValue(XDebugVariable variable, Node varNode,
+                       String typeName) {
                super(variable, varNode, typeName);
-               fDataString=null;
        }
-       
-       public XDebugResourceValue(XDebugVariable variable, String typeName) {
-               super(variable, typeName);
-               fDataString=null;
-       }
-
 
        public void setType(String typeName) {
                fType = XDebugAbstractValue.VALUETYPE_RESOURCE;
@@ -22,17 +14,12 @@ public class XDebugResourceValue extends XDebugAbstractValue {
        }
 
        public void renderValueString(String data) {
-               fDataString = data;
-               fValueString = "\""+data+"\"";
+               fValueString = "\"" + data + "\"";
        }
 
        public boolean supportsValueModification() {
                return true;
        }
-       
-       public String toString() {
-               return fDataString;
-       }
 
        public boolean verifyValue(String expression) {
                return true;