Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
|
a6ac958ee2 |
|
@ -14,8 +14,8 @@ type CsvParser struct {
|
||||||
ignore string
|
ignore string
|
||||||
maxFieldIndex int
|
maxFieldIndex int
|
||||||
}
|
}
|
||||||
func (p *csvParser) FieldCount() int {
|
func (p *CsvParser) FieldCount() int {
|
||||||
return maxFieldIndex + 1
|
return p.maxFieldIndex + 1
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* delimiters: string with all delimiter chars
|
* delimiters: string with all delimiter chars
|
||||||
|
|
Loading…
Reference in New Issue