Fix CSC & XML export to match .gitattributes

ico
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();
outputter.setFormat(Format.getPrettyFormat());
Format fmt = Format.getPrettyFormat();
fmt.setLineSeparator("\n");
outputter.setFormat(fmt);
outputter.output(doc, out);
out.close();