Author: ggregory
Date: Tue Jul 30 14:44:48 2013
New Revision: 1508472
URL: http://svn.apache.org/r1508472
Log:
[CSV-99] Revert Builder implementation in CSVFormat.
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=1508472&r1=1508471&r2=1508472&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 Jul 30 14:44:48 2013
@@ -38,7 +38,7 @@ import java.util.Arrays;
* </p>
* You can extend a format through a builder. For example, to extend the Excel
format with columns header, you write:
* </p>
- * <pre>CSVFormat.EXCEL.toBuilder().withHeader("Col1",
"Col2", "Col3").build();</pre>
+ * <pre>CSVFormat.EXCEL.toBuilder().withHeader("Col1",
"Col2", "Col3");</pre>
* <p>
* You can parse through a format. For example, to parse an Excel file with
columns header, you write:
* </p>
@@ -108,7 +108,7 @@ public class CSVFormat implements Serial
* For example for parsing or generating a CSV file on a French system the
following format will be used:
*
* <pre>
- * CSVFormat fmt = CSVFormat.newBuilder(EXCEL).withDelimiter(';').build();
+ * CSVFormat fmt = CSVFormat.newBuilder(EXCEL).withDelimiter(';');
* </pre>
* Settings are:
* <ul>