Not needed outside the iterator
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1300664 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f7220c40b1
commit
eb6ffbb7f3
|
@ -179,7 +179,7 @@ public class CSVParser implements Iterable<String[]> {
|
|||
*/
|
||||
public Iterator<String[]> iterator() {
|
||||
return new Iterator<String[]>() {
|
||||
String[] current;
|
||||
private String[] current;
|
||||
|
||||
public boolean hasNext() {
|
||||
if (current == null) {
|
||||
|
|
Loading…
Reference in New Issue