in src/java/org/apache/fulcrum/parser/DataStreamParser.java [248:262]
public boolean hasNext()
{
boolean hasNext = false;
try
{
hasNext = hasNextRow();
}
catch (IOException e)
{
log.error("IOException in CSVParser.hasNext", e);
}
return hasNext;
}