in src/main/java/org/apache/commons/csv/CSVParser.java [155:164]
public boolean hasNext() {
if (CSVParser.this.isClosed()) {
return false;
}
if (this.current == null) {
this.current = this.getNextRecord();
}
return this.current != null;
}