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 1919
2020/**
2121 * Utility class for input parameter validation.
22- *
22+ *
2323 * TODO Replace usage with {@link Objects} when we switch to Java 7.
2424 *
2525 * @version $Id$
Original file line number Diff line number Diff line change @@ -1076,7 +1076,7 @@ public CSVFormat withEscape(final Character escape) {
10761076
10771077 /**
10781078 * Returns a new {@code CSVFormat} using the first record as header.
1079- *
1079+ *
10801080 * <p>
10811081 * Calling this method is equivalent to calling:
10821082 * </p>
Original file line number Diff line number Diff line change @@ -353,7 +353,7 @@ public void printComment(final String comment) throws IOException {
353353 */
354354 public void println () throws IOException {
355355 if (format .getTrailingDelimiter ()) {
356- out .append (format .getDelimiter ());
356+ out .append (format .getDelimiter ());
357357 }
358358 final String recordSeparator = format .getRecordSeparator ();
359359 if (recordSeparator != null ) {
Original file line number Diff line number Diff line change 2525final class Constants {
2626
2727 static final char BACKSLASH = '\\' ;
28-
28+
2929 static final char BACKSPACE = '\b' ;
3030
3131 static final char COMMA = ',' ;
@@ -34,19 +34,19 @@ final class Constants {
3434 * Starts a comment, the remainder of the line is the comment.
3535 */
3636 static final char COMMENT = '#' ;
37-
37+
3838 static final char CR = '\r' ;
39-
39+
4040 /** RFC 4180 defines line breaks as CRLF */
4141 static final String CRLF = "\r \n " ;
42-
42+
4343 static final Character DOUBLE_QUOTE_CHAR = Character .valueOf ('"' );
44-
44+
4545 static final String EMPTY = "" ;
46-
46+
4747 /** The end of stream symbol */
4848 static final int END_OF_STREAM = -1 ;
49-
49+
5050 static final char FF = '\f' ;
5151
5252 static final char LF = '\n' ;
You can’t perform that action at this time.
0 commit comments