Forgot to make org.apache.commons.csv.CSVFormat.ignoreEmptyHeaders final.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1602242 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-06-12 17:33:12 +00:00
parent 99c3819bec
commit 49579ec643
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ public final class CSVFormat implements Serializable {
private final Character commentStart; // null if commenting is disabled
private final Character escape; // null if escaping is disabled
private final boolean ignoreSurroundingSpaces; // Should leading/trailing spaces be ignored around values?
private boolean ignoreEmptyHeaders;
private final boolean ignoreEmptyHeaders;
private final boolean ignoreEmptyLines;
private final String recordSeparator; // for outputs
private final String nullString; // the string to be used for null values