]> source.dussan.org Git - poi.git/commitdiff
Update to handle changed method signature on ddf.EscherContainerRecord.toString
authorNick Burch <nick@apache.org>
Wed, 13 Jul 2005 11:06:58 +0000 (11:06 +0000)
committerNick Burch <nick@apache.org>
Wed, 13 Jul 2005 11:06:58 +0000 (11:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353746 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hslf/dev/SlideShowDumper.java

index e90ba097a1bb52c2634b381f6085df586c278546..931bce67d2beeeccc05a2ea1d7fdf776f35a9a3e 100644 (file)
@@ -298,7 +298,7 @@ public void walkTree(int depth, int startPos, int maxLen) {
        // Print the record's details
        if(record instanceof EscherContainerRecord) {
                EscherContainerRecord ecr = (EscherContainerRecord)record;
-               System.out.println(ind + ecr.toString(false));
+               System.out.println(ind + ecr.toString());
                walkEscherDDF((indent+3), pos + 8, (int)atomLen );
        } else {
                System.out.println(ind + record.toString());