Checkstyle: Line has trailing spaces.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1635146 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
152ce04925
commit
6a38923b7b
|
@ -222,7 +222,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
|||
* 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}.
|
||||
|
|
|
@ -398,7 +398,7 @@ public final class CSVPrinter implements Flushable, Closeable {
|
|||
* <p>
|
||||
* Given the following data structure:
|
||||
* </p>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* <code>
|
||||
* List<String[]> data = ...
|
||||
|
@ -411,7 +411,7 @@ public final class CSVPrinter implements Flushable, Closeable {
|
|||
* <p>
|
||||
* Calling this method will print:
|
||||
* </p>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* <code>
|
||||
* A, B, C
|
||||
|
@ -449,7 +449,7 @@ public final class CSVPrinter implements Flushable, Closeable {
|
|||
* <p>
|
||||
* Given the following data structure:
|
||||
* </p>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* <code>
|
||||
* String[][] data = new String[3][]
|
||||
|
@ -462,7 +462,7 @@ public final class CSVPrinter implements Flushable, Closeable {
|
|||
* <p>
|
||||
* Calling this method will print:
|
||||
* </p>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* <code>
|
||||
* A, B, C
|
||||
|
|
|
@ -46,7 +46,7 @@ public final class CSVRecord implements Serializable, Iterable<String> {
|
|||
|
||||
/** 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 Serializable, Iterable<String> {
|
|||
public long getCharacterPosition() {
|
||||
return characterPosition;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns the comment for this record, if any.
|
||||
*
|
||||
|
@ -225,7 +225,7 @@ public final class CSVRecord implements Serializable, Iterable<String> {
|
|||
* Converts the values to a List.
|
||||
*
|
||||
* TODO: Maybe make this public?
|
||||
*
|
||||
*
|
||||
* @return a new List
|
||||
*/
|
||||
private List<String> toList() {
|
||||
|
|
|
@ -165,7 +165,7 @@ final class ExtendedBufferedReader extends BufferedReader {
|
|||
|
||||
/**
|
||||
* 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() {
|
||||
|
|
Loading…
Reference in New Issue