XML formatter fix: line breaks at the end of the text will be eaten – if you need them, use indentText = false v_0
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat, 04 Jan 2014 21:20:48 +0100
branchv_0
changeset 132 f785ee7a70a2
parent 131 347a7dd94a3f
child 133 a1bf1465df89
XML formatter fix: line breaks at the end of the text will be eaten – if you need them, use indentText = false
java/sql-dk/src/info/globalcode/sql/dk/formatting/AbstractXmlFormatter.java
--- 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);
 		}
 	}