Change visibility of net.sourceforge.phpeclipse.xdebug.php.model.XDebugAbstractValue...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugArrayValue.java
index 128bd64..7a1dbad 100644 (file)
@@ -10,12 +10,12 @@ public class XDebugArrayValue extends XDebugAbstractValue {
 
        public void renderValueString(String data) throws DebugException  {
                if (data.equals("")) {
-                       fValueString = "empty";
+                       setValueString("empty")/*fValueString = "empty"*/;
                } else {
                        if ("array".equals(getReferenceTypeName())) {
-                               fValueString = "array";
+                               setValueString("array")/*fValueString = "array"*/;
                        } else {
-                               fValueString = data;
+                               setValueString(data)/*fValueString = data*/;
                        }
                }
        }