X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugResourceValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugResourceValue.java index 4da322e..c74d74b 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugResourceValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugResourceValue.java @@ -3,13 +3,10 @@ package net.sourceforge.phpeclipse.xdebug.php.model; import org.w3c.dom.Node; public class XDebugResourceValue extends XDebugAbstractValue { - public XDebugResourceValue(XDebugVariable variable, Node varNode, String typeName) { + public XDebugResourceValue(XDebugVariable variable, Node varNode, + String typeName) { super(variable, varNode, typeName); } - - public XDebugResourceValue(XDebugVariable variable, String typeName) { - super(variable, typeName); - } public void setType(String typeName) { fType = XDebugAbstractValue.VALUETYPE_RESOURCE; @@ -23,7 +20,7 @@ public class XDebugResourceValue extends XDebugAbstractValue { public boolean supportsValueModification() { return true; } - + public boolean verifyValue(String expression) { return true; }