Checkstyle: Operator should be on the previous line

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742464 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2016-05-05 19:52:09 +00:00
parent d9d6a8fe04
commit 4901f1ccdc
1 changed files with 3 additions and 3 deletions

View File

@ -379,9 +379,9 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
Map<String, Integer> hdrMap = null;
final String[] formatHeader = this.format.getHeader();
if (formatHeader != null) {
hdrMap = this.format.getIgnoreHeaderCase()
? new TreeMap<String, Integer>(String.CASE_INSENSITIVE_ORDER)
: new LinkedHashMap<String, Integer>();
hdrMap = this.format.getIgnoreHeaderCase() ?
new TreeMap<String, Integer>(String.CASE_INSENSITIVE_ORDER) :
new LinkedHashMap<String, Integer>();
String[] headerRecord = null;
if (formatHeader.length == 0) {