Skip to content

Commit 1586024

Browse files
committed
Removed spaces
1 parent 7b8ca15 commit 1586024

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/com/maxprograms/xml/DTDChoice.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public String toString() {
5050
ContentParticle particle = content.get(i);
5151
sb.append(particle.toString());
5252
if (i < content.size() - 1) {
53-
sb.append(" | ");
53+
sb.append('|');
5454
}
5555
}
5656
sb.append(')');

src/com/maxprograms/xml/DTDSecuence.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public String toString() {
5050
ContentParticle particle = content.get(i);
5151
sb.append(particle.toString());
5252
if (i < content.size() - 1) {
53-
sb.append(", ");
53+
sb.append(',');
5454
}
5555
}
5656
sb.append(')');

0 commit comments

Comments
 (0)