Skip to content

Commit

Permalink
Fixed format
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev committed Oct 9, 2024
1 parent 5d3e16d commit 996d0e2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/github/underscore/Xml.java
Original file line number Diff line number Diff line change
Expand Up @@ -1119,8 +1119,7 @@ public static String toXml(Collection collection, XmlStringBuilder.Step identSte
}

public static String toXmlWithoutRoot(Collection collection, XmlStringBuilder.Step identStep) {
final XmlStringBuilder builder =
new XmlStringBuilderWithoutHeader(identStep, 0);
final XmlStringBuilder builder = new XmlStringBuilderWithoutHeader(identStep, 0);
writeArray(collection, builder, ARRAY_TRUE);
return builder.toString();
}
Expand Down

0 comments on commit 996d0e2

Please sign in to comment.