if (lineMatches) {
if (!foundHeaderLine && firstIgnoreField && (null != parser)) {
if (ignore.charAt(0) != _quoteChar) { // if using quotes then don't pull the char
line = line.substring(ignore.length());
}//TESTED (["a","b","c"] and [a,b,c] vs XmlIgnoreFields: [ "a" ] and [ "\"a" ])
String[] fields = parser.parseLine(line);
// Now override the manual fields:
indexToField = Arrays.asList(fields).toArray();
if ((indexToField.length > 1) || (0 != ((String)indexToField[0]).length())) {
foundHeaderLine = true;