File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838 * </p>
3939 * You can extend a format through a builder. For example, to extend the Excel format with columns header, you write:
4040 * </p>
41- * <pre>CSVFormat.EXCEL.toBuilder().withHeader("Col1", "Col2", "Col3").build() ;</pre>
41+ * <pre>CSVFormat.EXCEL.toBuilder().withHeader("Col1", "Col2", "Col3");</pre>
4242 * <p>
4343 * You can parse through a format. For example, to parse an Excel file with columns header, you write:
4444 * </p>
@@ -108,7 +108,7 @@ static boolean isLineBreak(final Character c) {
108108 * For example for parsing or generating a CSV file on a French system the following format will be used:
109109 *
110110 * <pre>
111- * CSVFormat fmt = CSVFormat.newBuilder(EXCEL).withDelimiter(';').build() ;
111+ * CSVFormat fmt = CSVFormat.newBuilder(EXCEL).withDelimiter(';');
112112 * </pre>
113113 * Settings are:
114114 * <ul>
You can’t perform that action at this time.
0 commit comments