From b7cd1ae225663bc6e0a30b6355e98bd6e99b2a04 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Thu, 10 Jul 2014 16:42:38 +0000 Subject: [PATCH] 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 --- src/main/java/org/apache/commons/csv/CSVFormat.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 0b916219..961dae79 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -921,6 +921,8 @@ public final class CSVFormat implements Serializable { /** * Sets the record separator of the format to the specified character. * + *

Note: Currently only CR and LF are supported.

+ * * @param recordSeparator * the record separator to use for output. * @@ -933,6 +935,8 @@ public final class CSVFormat implements Serializable { /** * Sets the record separator of the format to the specified String. * + *

Note: Currently only CR, LF and CRLF are supported.

+ * * @param recordSeparator * the record separator to use for output. *