Fix CSC & XML export to match .gitattributes

This commit is contained in:
Rémy Léone 2015-10-22 15:18:31 +02:00
parent bf41de1be5
commit f2440235b5
76 changed files with 35465 additions and 35463 deletions

View file

@ -3480,7 +3480,9 @@ public class Cooja extends Observable {
} }
XMLOutputter outputter = new XMLOutputter(); XMLOutputter outputter = new XMLOutputter();
outputter.setFormat(Format.getPrettyFormat()); Format fmt = Format.getPrettyFormat();
fmt.setLineSeparator("\n");
outputter.setFormat(fmt);
outputter.output(doc, out); outputter.output(doc, out);
out.close(); out.close();