Oops, forgot to use DISABLED char

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1398561 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-10-15 23:00:43 +00:00
parent 5c9b878dfd
commit 060fd48fe4
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class CSVFormat implements Serializable {
/**
* Starting format; used for creating other formats.
*/
private static final CSVFormat PRISTINE = new CSVFormat(COMMA, null, null, null, null, false, false, null, null);
private static final CSVFormat PRISTINE = new CSVFormat(DISABLED, null, null, null, null, false, false, null, null);
/**
* Standard comma separated format, as for {@link #RFC4180} but allowing blank lines.