]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Correction: use super.toString() to still have the internal instance id
authorAndreas L. Delmelle <adelmelle@apache.org>
Sat, 3 Nov 2007 10:42:05 +0000 (10:42 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Sat, 3 Nov 2007 10:42:05 +0000 (10:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@591577 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/FObj.java

index 4c8387f822bd3da9e9fc9788c7db3ec6b63ef5e8..b2587df2dc47b1143f7e24b858f4de3e4ef25c45 100644 (file)
@@ -583,7 +583,7 @@ public abstract class FObj extends FONode implements Constants {
     
     /** {@inheritDoc} */
     public String toString() {
-        return (this.getClass().getName() + "[@id=" + this.id + "]");
+        return (super.toString() + "[@id=" + this.id + "]");
     }