#1384 - Change MigrationXmlWriter to not write <!DOCTYPE xml> (as it is not needed/expected now)

This commit is contained in:
rob bygrave
2018-05-24 00:15:25 +12:00
parent ae58d9223a
commit 42d83705b7
6 changed files with 0 additions and 6 deletions
@@ -29,7 +29,6 @@ public class MigrationXmlWriter {
try (FileWriter writer = new FileWriter(file)) {
writer.write("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n");
writer.write("<!DOCTYPE xml>\n");
if (comment != null) {
writer.write("<!-- ");
writer.write(comment);