Format lines that are longer than 120 characters

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1458803 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-03-20 12:42:37 +00:00
parent c99e6d9ef6
commit 20fe471d40
1 changed files with 4 additions and 2 deletions

View File

@ -45,7 +45,8 @@ public class CSVRecord implements Serializable, Iterable<String> {
/** The record number. */
private final long recordNumber;
CSVRecord(final String[] values, final Map<String, Integer> mapping, final String comment, final long recordNumber) {
CSVRecord(final String[] values, final Map<String, Integer> mapping,
final String comment, final long recordNumber) {
this.recordNumber = recordNumber;
this.values = values != null ? values : EMPTY_STRING_ARRAY;
this.mapping = mapping;
@ -73,7 +74,8 @@ public class CSVRecord implements Serializable, Iterable<String> {
*/
public String get(final String name) {
if (mapping == null) {
throw new IllegalStateException("No header mapping was specified, the record values can't be accessed by name");
throw new IllegalStateException(
"No header mapping was specified, the record values can't be accessed by name");
}
final Integer index = mapping.get(name);
return index != null ? values[index.intValue()] : null;