Skip to content

Commit 6a38923

Browse files
committed
Checkstyle: Line has trailing spaces.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1635146 13f79535-47bb-0310-9956-ffa450edef68
1 parent 152ce04 commit 6a38923

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public static CSVParser parse(final URL url, final Charset charset, final CSVFor
222222
* The next record number to assign.
223223
*/
224224
private long recordNumber;
225-
225+
226226
/**
227227
* Lexer offset when the parser does not start parsing at the beginning of the source. Usually used in combination
228228
* with {@link #recordNumber}.

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ public void printRecord(final Object... values) throws IOException {
398398
* <p>
399399
* Given the following data structure:
400400
* </p>
401-
*
401+
*
402402
* <pre>
403403
* <code>
404404
* List&lt;String[]&gt; data = ...
@@ -411,7 +411,7 @@ public void printRecord(final Object... values) throws IOException {
411411
* <p>
412412
* Calling this method will print:
413413
* </p>
414-
*
414+
*
415415
* <pre>
416416
* <code>
417417
* A, B, C
@@ -449,7 +449,7 @@ public void printRecords(final Iterable<?> values) throws IOException {
449449
* <p>
450450
* Given the following data structure:
451451
* </p>
452-
*
452+
*
453453
* <pre>
454454
* <code>
455455
* String[][] data = new String[3][]
@@ -462,7 +462,7 @@ public void printRecords(final Iterable<?> values) throws IOException {
462462
* <p>
463463
* Calling this method will print:
464464
* </p>
465-
*
465+
*
466466
* <pre>
467467
* <code>
468468
* A, B, C

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public final class CSVRecord implements Serializable, Iterable<String> {
4646

4747
/** The record number. */
4848
private final long recordNumber;
49-
49+
5050
/** The values of the record */
5151
private final String[] values;
5252

@@ -121,7 +121,7 @@ public String get(final String name) {
121121
public long getCharacterPosition() {
122122
return characterPosition;
123123
}
124-
124+
125125
/**
126126
* Returns the comment for this record, if any.
127127
*
@@ -225,7 +225,7 @@ public int size() {
225225
* Converts the values to a List.
226226
*
227227
* TODO: Maybe make this public?
228-
*
228+
*
229229
* @return a new List
230230
*/
231231
private List<String> toList() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ long getCurrentLineNumber() {
165165

166166
/**
167167
* Gets the character position in the reader.
168-
*
168+
*
169169
* @return the current position in the reader (counting characters, not bytes since this is a Reader)
170170
*/
171171
long getPosition() {

0 commit comments

Comments
 (0)