You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ap...@apache.org on 2006/11/07 17:34:21 UTC

svn commit: r472153 - /incubator/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/text/html/parser/Element.java

Author: apetrenko
Date: Tue Nov  7 08:34:20 2006
New Revision: 472153

URL: http://svn.apache.org/viewvc?view=rev&rev=472153
Log:
Patch for HARMONY-2085 "[classlib][html] Compatibilty. Difference with the RI in the return value of javax.swing.text.html.parser.Element.toString()"

Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/text/html/parser/Element.java

Modified: incubator/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/text/html/parser/Element.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/text/html/parser/Element.java?view=diff&rev=472153&r1=472152&r2=472153
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/text/html/parser/Element.java (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/text/html/parser/Element.java Tue Nov  7 08:34:20 2006
@@ -113,17 +113,7 @@
     }
 
     public String toString() {
-        return "javax.swing.text.html.parser.Element["
-               + "index=" + index + ","
-               + "name=" + name + ","
-               + "oStart=" + oStart + ","
-               + "oEnd=" + oEnd + ","
-               + "inclusions=" + inclusions + ","
-               + "exclusions=" + exclusions + ","
-               + "type=" + type + ","
-               + "content=" +  content + ","
-               + "atts=" +  atts + ","
-               + "data=" +  data + "]";
+        return name;
     }
 
     public boolean isEmpty() {