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:
Sebastian Bazley 2012-03-14 17:57:24 +00:00
parent f7220c40b1
commit eb6ffbb7f3
1 changed files with 1 additions and 1 deletions

View File

@ -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) {