Fix java 1.4 VM compatibility.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugArrayValue.java
index cded934..1eb7c45 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)";