Fixed EOFException so that partial gzip files get loaded

This commit is contained in:
Eyck Jentzsch 2019-03-14 19:27:58 +01:00
parent cde1835c74
commit dbe5d603ed
1 changed files with 5 additions and 1 deletions

View File

@ -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;
}