X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java index 62f9347..1690a23 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java @@ -3,25 +3,13 @@ package net.sourceforge.phpeclipse.xdebug.php.model; import org.w3c.dom.Node; public class XDebugValue extends XDebugAbstractValue { - public XDebugValue(XDebugVariable variable, Node varNode, String typeName) { super(variable, varNode, typeName); - // TODO Auto-generated constructor stub - fValueString="uninitialized"; - fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED; - fTypeName="unknown"; - + fValueString = "uninitialized"; + fType = XDebugAbstractValue.VALUETYPE_UNINITIALIZED; + fTypeName = "unknown"; } - public XDebugValue(XDebugVariable variable, String typeName) { - super(variable, typeName); - fValueString="uninitialized"; - fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED; - fTypeName="unknown"; - - } - - public void setType(String typeName) { } @@ -31,5 +19,4 @@ public class XDebugValue extends XDebugAbstractValue { public boolean verifyValue(String expression) { return false; } - }