Skip to content

Commit eb6ffbb

Browse files
committed
Not needed outside the iterator
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1300664 13f79535-47bb-0310-9956-ffa450edef68
1 parent f7220c4 commit eb6ffbb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ String[] getRecord() throws IOException {
179179
*/
180180
public Iterator<String[]> iterator() {
181181
return new Iterator<String[]>() {
182-
String[] current;
182+
private String[] current;
183183

184184
public boolean hasNext() {
185185
if (current == null) {

0 commit comments

Comments
 (0)