remove unused constructor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugFloatValue.java
index 8d9dcd6..7e1dbff 100644 (file)
@@ -3,30 +3,21 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugFloatValue extends XDebugAbstractValue {
-
        public XDebugFloatValue(XDebugVariable variable, Node varNode,String TypeName) {
                super(variable, varNode,TypeName);
-               
        }
        
-       public XDebugFloatValue(XDebugVariable variable,String TypeName) {
-               super(variable,TypeName);
-               
-       }
-
-
        public boolean supportsValueModification() {
                return true;
        }
-
        
        public void setType(String typeName) {
-               fType=XDebugAbstractValue.VALUETYPE_FLOAT;
-               fTypeName=typeName;
+               fType = XDebugAbstractValue.VALUETYPE_FLOAT;
+               fTypeName = typeName;
        }
 
        public void renderValueString(String data) {
-               fValueString=data;
+               fValueString = data;
        }
 
        public boolean verifyValue(String expression) {
@@ -37,8 +28,4 @@ public class XDebugFloatValue extends XDebugAbstractValue {
                }
                return true;
        }
-
-       /*public String toString() {
-               return null;
-       }*/
-}
+}
\ No newline at end of file