Browse Source

Missed a hardcoded indent character.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268331 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 24 years ago
parent
commit
9b36df2db1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/util/DOMElementWriter.java

+ 1
- 1
src/main/org/apache/tools/ant/util/DOMElementWriter.java View File

@@ -139,7 +139,7 @@ public class DOMElementWriter {
// to indent // to indent
if (hasChildren) { if (hasChildren) {
for (int i = 0; i < indent; i++) { for (int i = 0; i < indent; i++) {
out.write(" ");
out.write(indentWith);
} }
} }




Loading…
Cancel
Save