Skip to content

Commit 39f779e

Browse files
Fix after review
1 parent 0b3cd5c commit 39f779e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/codehaus/plexus/util/xml/PrettyPrintXMLWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* <p>Implementation of XMLWriter which emits nicely formatted documents.</p>
2828
*
29-
* <p>C0 controls chars are omitted from output</p>
29+
* <p>C0n control characters except <code>\n</code>, <code>\r</code>, and <code>\t</code> are omitted from output</p>
3030
*/
3131
public class PrettyPrintXMLWriter implements XMLWriter {
3232
/** Line separator ("\n" on UNIX) */

src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* <li>PROPERTY_SERIALIZER_INDENTATION
2525
* <li>PROPERTY_SERIALIZER_LINE_SEPARATOR
2626
* </ul>
27-
* <p>C0 controls chars are omitted from output</p>
27+
* <p>C0n control characters except <code>\n</code>, <code>\r</code>, and <code>\t</code> are omitted from output</p>
2828
*/
2929
public class MXSerializer implements XmlSerializer {
3030
protected static final String XML_URI = "http://www.w3.org/XML/1998/namespace";

0 commit comments

Comments
 (0)