Fixed EOFException so that partial gzip files get loaded
This commit is contained in:
parent
cde1835c74
commit
dbe5d603ed
|
@ -84,7 +84,11 @@ public class TextDbLoader implements IWaveformDbLoader{
|
||||||
calculateConcurrencyIndicees()
|
calculateConcurrencyIndicees()
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
} catch(Exception e) { }
|
} catch(EOFException e) {
|
||||||
|
return true;
|
||||||
|
} catch(Exception e) {
|
||||||
|
e.printStackTrace()
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue