Browse Source

extra whitespace caused the test fail on win xp. Strange, but it worked fine on *nix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@614274 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_0_3_BETA1
Yegor Kozlov 16 years ago
parent
commit
f96c46a589
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/java/org/apache/poi/ddf/EscherContainerRecord.java

+ 1
- 1
src/java/org/apache/poi/ddf/EscherContainerRecord.java View 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;

Loading…
Cancel
Save