Commit 7844ec0b authored by Simon Luser's avatar Simon Luser
Browse files

find bugs

parent 35ea93a4
......@@ -39,7 +39,7 @@ public abstract class CSVReader<T>
while (csv.ready()) {
String line = csv.readLine();
if (line.contains(SEP)) {
if (line != null && line.contains(SEP)) {
String[] parts = line.split(SEP);
T entry = parse(parts);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment