Author: ggregory
Date: Wed Oct 29 14:31:07 2014
New Revision: 1635146
URL: http://svn.apache.org/r1635146
Log:
Checkstyle: Line has trailing spaces.
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java?rev=1635146&r1=1635145&r2=1635146&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
Wed Oct 29 14:31:07 2014
@@ -222,7 +222,7 @@ public final class CSVParser implements
* The next record number to assign.
*/
private long recordNumber;
-
+
/**
* Lexer offset when the parser does not start parsing at the beginning of
the source. Usually used in combination
* with {@link #recordNumber}.
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java?rev=1635146&r1=1635145&r2=1635146&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java
Wed Oct 29 14:31:07 2014
@@ -398,7 +398,7 @@ public final class CSVPrinter implements
* <p>
* Given the following data structure:
* </p>
- *
+ *
* <pre>
* <code>
* List<String[]> data = ...
@@ -411,7 +411,7 @@ public final class CSVPrinter implements
* <p>
* Calling this method will print:
* </p>
- *
+ *
* <pre>
* <code>
* A, B, C
@@ -449,7 +449,7 @@ public final class CSVPrinter implements
* <p>
* Given the following data structure:
* </p>
- *
+ *
* <pre>
* <code>
* String[][] data = new String[3][]
@@ -462,7 +462,7 @@ public final class CSVPrinter implements
* <p>
* Calling this method will print:
* </p>
- *
+ *
* <pre>
* <code>
* A, B, C
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java?rev=1635146&r1=1635145&r2=1635146&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
Wed Oct 29 14:31:07 2014
@@ -46,7 +46,7 @@ public final class CSVRecord implements
/** The record number. */
private final long recordNumber;
-
+
/** The values of the record */
private final String[] values;
@@ -121,7 +121,7 @@ public final class CSVRecord implements
public long getCharacterPosition() {
return characterPosition;
}
-
+
/**
* Returns the comment for this record, if any.
*
@@ -225,7 +225,7 @@ public final class CSVRecord implements
* Converts the values to a List.
*
* TODO: Maybe make this public?
- *
+ *
* @return a new List
*/
private List<String> toList() {
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java?rev=1635146&r1=1635145&r2=1635146&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
Wed Oct 29 14:31:07 2014
@@ -165,7 +165,7 @@ final class ExtendedBufferedReader exten
/**
* Gets the character position in the reader.
- *
+ *
* @return the current position in the reader (counting characters, not
bytes since this is a Reader)
*/
long getPosition() {