Skip to content

Commit f57afe6

Browse files
committed
Fix checksyle trailing space.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1465774 13f79535-47bb-0310-9956-ffa450edef68
1 parent e9e52df commit f57afe6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ static boolean isLineBreak(final Character c) {
439439
* @return a standard comma separated format builder, as for {@link #RFC4180} but allowing empty lines.
440440
*/
441441
public static CSVFormatBuilder newBuilder() {
442-
return new CSVFormatBuilder(COMMA, DOUBLE_QUOTE_CHAR, null, null, null, false, true, CRLF, Constants.EMPTY,
442+
return new CSVFormatBuilder(COMMA, DOUBLE_QUOTE_CHAR, null, null, null, false, true, CRLF, Constants.EMPTY,
443443
null);
444444
}
445445
private final char delimiter;

0 commit comments

Comments
 (0)