Fix param name and Javadoc to match ivar names.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397925 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-10-13 18:58:56 +00:00
parent c7576ccded
commit df592767fc
1 changed files with 3 additions and 3 deletions

View File

@ -144,13 +144,13 @@ public class CSVFormat implements Serializable {
* the header
*/
public CSVFormat(final Character delimiter, final Character encapsulator, final Character commentStart, final Character escape, final
boolean surroundingSpacesIgnored, final boolean emptyLinesIgnored, final String lineSeparator, final String[] header) {
boolean ignoreSurroundingSpaces, final boolean ignoreEmptyLines, final String lineSeparator, final String[] header) {
this.delimiter = delimiter;
this.encapsulator = encapsulator;
this.commentStart = commentStart;
this.escape = escape;
this.ignoreSurroundingSpaces = surroundingSpacesIgnored;
this.ignoreEmptyLines = emptyLinesIgnored;
this.ignoreSurroundingSpaces = ignoreSurroundingSpaces;
this.ignoreEmptyLines = ignoreEmptyLines;
this.lineSeparator = lineSeparator;
this.header = header;
}