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
This commit is contained in:
Sebastian Bazley 2012-03-30 00:58:36 +00:00
parent d994897420
commit 0186a3d335
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ import java.io.StringWriter;
public class CSVFormat implements Serializable {
/** According to RFC 4180, line breaks are delimited by CRLF */
private static final String CRLF = "\r\n";
public static final String CRLF = "\r\n";
private final char delimiter;
private final char encapsulator;