Skip to content

Commit b7cd1ae

Browse files
committed
Document that we can only handle CR, LF and CRLF as record separator
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1609498 13f79535-47bb-0310-9956-ffa450edef68
1 parent 0e8811d commit b7cd1ae

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,8 @@ public CSVFormat withQuotePolicy(final Quote quotePolicy) {
921921
/**
922922
* Sets the record separator of the format to the specified character.
923923
*
924+
* <p><strong>Note:</strong> Currently only CR and LF are supported.</p>
925+
*
924926
* @param recordSeparator
925927
* the record separator to use for output.
926928
*
@@ -933,6 +935,8 @@ public CSVFormat withRecordSeparator(final char recordSeparator) {
933935
/**
934936
* Sets the record separator of the format to the specified String.
935937
*
938+
* <p><strong>Note:</strong> Currently only CR, LF and CRLF are supported.</p>
939+
*
936940
* @param recordSeparator
937941
* the record separator to use for output.
938942
*

0 commit comments

Comments
 (0)