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:
Gary D. Gregory 2014-10-29 14:31:37 +00:00
parent 6a38923b7b
commit 016cc839d2
1 changed files with 2 additions and 1 deletions

View File

@ -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;