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()
|
||||
return true
|
||||
}
|
||||
} catch(Exception e) { }
|
||||
} catch(EOFException e) {
|
||||
return true;
|
||||
} catch(Exception e) {
|
||||
e.printStackTrace()
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue