Checkstyle: line length.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1635147 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6a38923b7b
commit
016cc839d2
|
@ -50,7 +50,8 @@ public final class CSVRecord implements Serializable, Iterable<String> {
|
|||
/** The values of the record */
|
||||
private final String[] values;
|
||||
|
||||
CSVRecord(final String[] values, final Map<String, Integer> mapping, final String comment, final long recordNumber, long characterPosition) {
|
||||
CSVRecord(final String[] values, final Map<String, Integer> mapping, final String comment, final long recordNumber,
|
||||
long characterPosition) {
|
||||
this.recordNumber = recordNumber;
|
||||
this.values = values != null ? values : EMPTY_STRING_ARRAY;
|
||||
this.mapping = mapping;
|
||||
|
|
Loading…
Reference in New Issue