X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugBooleanValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugBooleanValue.java index 77489c2..1960aa9 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugBooleanValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugBooleanValue.java @@ -19,16 +19,16 @@ public class XDebugBooleanValue extends XDebugAbstractValue { } catch (NumberFormatException e) { data=data.toLowerCase(); if (data.equals("true") || data.equals("false")) - fValueString=data; + setValueString(data)/*fValueString=data*/; else - fValueString="not defined"; + setValueString("not defined")/*fValueString="not defined"*/; } if (value==0) - fValueString="false"; + setValueString("false")/*fValueString="false"*/; else if (value==1) - fValueString="true"; + setValueString("false")/*fValueString="true"*/; else - fValueString="not defined"; + setValueString("not defined")/*fValueString="not defined"*/; } public boolean verifyValue(String expression) {