Skip to content

Commit 0186a3d

Browse files
committed
CRLF might as well be public to make it easier to use to build formats.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1307187 13f79535-47bb-0310-9956-ffa450edef68
1 parent d994897 commit 0186a3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public class CSVFormat implements Serializable {
3131

3232
/** According to RFC 4180, line breaks are delimited by CRLF */
33-
private static final String CRLF = "\r\n";
33+
public static final String CRLF = "\r\n";
3434

3535
private final char delimiter;
3636
private final char encapsulator;

0 commit comments

Comments
 (0)