diff --git a/ivy/MakePom.scala b/ivy/MakePom.scala index 50b23d920..21099e929 100644 --- a/ivy/MakePom.scala +++ b/ivy/MakePom.scala @@ -26,7 +26,7 @@ class MakePom(val log: Logger) def write(node: XNode, output: File): Unit = write(toString(node), output, "\n") def write(xmlString: String, output: File, newline: String) { - IO.write(output, "" + newline + xmlString) + IO.write(output, "" + newline + xmlString) } def toString(node: XNode): String = new PrettyPrinter(1000, 4).format(node)