Remove unused constructor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStringValue.java
index b2d0231..b148bd8 100644 (file)
@@ -3,23 +3,17 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugStringValue extends XDebugAbstractValue {
-
-       private String fDataString;
-
        public XDebugStringValue(XDebugVariable variable, Node varNode,
                        String typeName) {
                super(variable, varNode, typeName);
-               fDataString = null;
        }
 
        public void setType(String typeName) {
                fType = XDebugAbstractValue.VALUETYPE_STRING;
                fTypeName = typeName;
-
        }
 
        public void renderValueString(String data) {
-               fDataString = data;
                fValueString = "\"" + data + "\"";
        }
 
@@ -27,13 +21,7 @@ public class XDebugStringValue extends XDebugAbstractValue {
                return true;
        }
 
-       public String toString() {
-               return fDataString;
-       }
-
        public boolean verifyValue(String expression) {
-               // TODO Auto-generated method stub
                return true;
        }
-
 }