CSV-60 CSVParser.iterator().remove() should throw throw new UnsupportedOperationException()

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1300661 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-14 17:43:35 +00:00
parent 3cb5801a98
commit f7220c40b1
1 changed files with 3 additions and 1 deletions

View File

@ -212,7 +212,9 @@ public class CSVParser implements Iterable<String[]> {
} }
} }
public void remove() { } public void remove() {
throw new UnsupportedOperationException();
}
}; };
} }