java/sql-dk/src/info/globalcode/sql/dk/formatting/AbstractXmlFormatter.java
branchv_0
changeset 132 f785ee7a70a2
parent 130 8548e21177f9
child 136 c0f9521900bf
--- a/java/sql-dk/src/info/globalcode/sql/dk/formatting/AbstractXmlFormatter.java	Sat Jan 04 20:24:27 2014 +0100
+++ b/java/sql-dk/src/info/globalcode/sql/dk/formatting/AbstractXmlFormatter.java	Sat Jan 04 21:20:48 2014 +0100
@@ -142,7 +142,11 @@
 			/*
 			 * line breaks at the end of the text will be eaten – if you need them, use indentText = false
 			 */
-			printText(lines[0], false);
+			if (lines.length == 1 && text.endsWith("\n")) {
+				text = text.substring(0, text.length() - 1);
+			}
+
+			printText(text, false);
 			printEndElement(false);
 		}
 	}