fix bug 678.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugArrayValue.java
index cded934..a140ffb 100644 (file)
@@ -21,7 +21,7 @@ public class XDebugArrayValue extends XDebugAbstractValue {
        }
 
        public void renderValueString(String data) {
-               if (data.isEmpty()) {
+               if (data.equals("")) {
                        fValueString = /*"Array */"empty";
                } else {
                        fValueString = /*"Array " + */data + " element(s)";                     
@@ -33,4 +33,7 @@ public class XDebugArrayValue extends XDebugAbstractValue {
                return false;
        }
 
+       /*public String toString() {
+               return null;
+       }*/
 }