]> source.dussan.org Git - poi.git/commitdiff
extra whitespace caused the test fail on win xp. Strange, but it worked fine on *nix
authorYegor Kozlov <yegor@apache.org>
Tue, 22 Jan 2008 17:59:27 +0000 (17:59 +0000)
committerYegor Kozlov <yegor@apache.org>
Tue, 22 Jan 2008 17:59:27 +0000 (17:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@614274 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ddf/EscherContainerRecord.java

index fc1442be94b62663f15582e6bd5fe1347f116762..28b4a976c3f89a41cf6c30f8e3cd2038b4712c08 100644 (file)
@@ -202,7 +202,7 @@ public class EscherContainerRecord extends EscherRecord
                String newIndent = indent + "   ";
                
                 EscherRecord record = (EscherRecord) iterator.next();
-                children.append(newIndent + "Child " + count + ":\n");
+                children.append(newIndent + "Child " + count + ":" + nl);
                 
                 if(record instanceof EscherContainerRecord) {
                        EscherContainerRecord ecr = (EscherContainerRecord)record;