Skip to content

Commit 3568bba

Browse files
committed
Checkstyle: Line has trailing spaces
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742459 13f79535-47bb-0310-9956-ffa450edef68
1 parent da77daf commit 3568bba

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
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$

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) {

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
final 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';

0 commit comments

Comments
 (0)