remove unused constructor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugIntValue.java
index b7e0418..01b1249 100644 (file)
@@ -3,15 +3,13 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugIntValue extends XDebugAbstractValue {
-
        public XDebugIntValue(XDebugVariable variable, Node varNode,String TypeName) {
                super(variable, varNode,TypeName);
-               
        }
        
        public void setType(String typeName) {
-               fType=XDebugAbstractValue.VALUETYPE_INT;
-               fTypeName=typeName;
+               fType = XDebugAbstractValue.VALUETYPE_INT;
+               fTypeName = typeName;
        }
        
        public boolean supportsValueModification() {
@@ -19,9 +17,8 @@ public class XDebugIntValue extends XDebugAbstractValue {
        }
                
        public void renderValueString(String dataString) {
-               fValueString=dataString;
+               fValueString = dataString;
        }
-
        
        public boolean verifyValue(String expression) {
                try {
@@ -31,9 +28,4 @@ public class XDebugIntValue extends XDebugAbstractValue {
                }
                return true;
        }
-       
-       public String toString() {
-               return fValueString;
-       }
-
-}
+}
\ No newline at end of file