Remove redundant code
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1398367 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3a90cfe249
commit
7d8c7f17ff
|
@ -180,8 +180,6 @@ public class CSVParser implements Iterable<CSVRecord> {
|
||||||
case EOF:
|
case EOF:
|
||||||
if (reusableToken.isReady) {
|
if (reusableToken.isReady) {
|
||||||
record.add(reusableToken.content.toString());
|
record.add(reusableToken.content.toString());
|
||||||
} else {
|
|
||||||
result = null;
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case INVALID:
|
case INVALID:
|
||||||
|
|
Loading…
Reference in New Issue