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:
parent
c7576ccded
commit
df592767fc
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue