Author: sebb
Date: Tue Mar 27 01:31:33 2012
New Revision: 1305705
URL: http://svn.apache.org/viewvc?rev=1305705&view=rev
Log:
Provide test access to PRISTINE
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1305705&r1=1305704&r2=1305705&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
Tue Mar 27 01:31:33 2012
@@ -56,7 +56,7 @@ public class CSVFormat implements Serial
/**
* Starting format with no settings defined; used for creating other
formats from scratch.
*/
- private static CSVFormat PRISTINE = new CSVFormat(DISABLED, DISABLED,
DISABLED, DISABLED, false, false, null, null);
+ static final CSVFormat PRISTINE = new CSVFormat(DISABLED, DISABLED,
DISABLED, DISABLED, false, false, null, null);
/**
* Standard comma separated format, as for {@link #RFC4180} but allowing
blank lines.