1) CLASSNAME is specified by the property 'name' == CLASSNAME. When doing it by the...
authorrobekras <robekras>
Mon, 7 Mar 2011 17:44:00 +0000 (17:44 +0000)
committerrobekras <robekras>
Mon, 7 Mar 2011 17:44:00 +0000 (17:44 +0000)
net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugObjectValue.java

index 92ba352..a94b869 100644 (file)
@@ -18,31 +18,32 @@ public class XDebugObjectValue extends XDebugAbstractValue {
                NumChildren = 0;
                if (!PHPDebugUtils.getAttributeValue(value, "numchildren").equals("")) {
                        NumChildren = Integer.parseInt(PHPDebugUtils.getAttributeValue(value, "numchildren"));
-               }               
+               }
 
                if (NumChildren > 0) {
                        NodeList property = value.getChildNodes();
-                       
+
                        ArrayList a = new ArrayList();
                        for (int i = 0; i < property.getLength(); i++) {
                                Node propertyNode = property.item(i);
-                               /* 
+                               /*
                                 * Eliminate CLASSNAME duplicate from object properties.
                                 * see http://bugs.xdebug.org/view.php?id=518
                                 * and http://svn.xdebug.org/cgi-bin/viewvc.cgi/xdebug/trunk/xdebug_var.c?root=xdebug&r1=2962&r2=2996
                                 */
-                               String encoding = PHPDebugUtils.getAttributeValue(propertyNode, "encoding");
-                               if (encoding.equals("base64")) {
+                               String name     = PHPDebugUtils.getAttributeValue (propertyNode, "name");
+
+                               if (!name.equals ("CLASSNAME")) {
                                        a.add(new XDebugVariable(variable, propertyNode));
                                }
                        }
-                       
+
                        setChildren((IVariable[])a.toArray(new IVariable[a.size()]));
                }
-               
+
                String className = PHPDebugUtils.getAttributeValue(value,"classname");
                if(!"".equals(className)) {
                        setValueString(className);
                }
        }
-}
\ No newline at end of file
+}