X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugFloatValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugFloatValue.java index 03a6439..7e1dbff 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugFloatValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugFloatValue.java @@ -3,17 +3,14 @@ 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, Node varNode,String TypeName) { + super(variable, varNode,TypeName); } - + public boolean supportsValueModification() { return true; } - + public void setType(String typeName) { fType = XDebugAbstractValue.VALUETYPE_FLOAT; fTypeName = typeName; @@ -31,5 +28,4 @@ public class XDebugFloatValue extends XDebugAbstractValue { } return true; } - -} +} \ No newline at end of file