add another fix for #27 'parser doesn't handle truncated input files'
This commit is contained in:
parent
0634556256
commit
77302521b2
|
@ -88,6 +88,8 @@ public class TextDbLoader implements IWaveformDbLoader{
|
|||
}
|
||||
} catch (IndexOutOfBoundsException e) {
|
||||
return false
|
||||
} catch (IllegalArgumentException e) {
|
||||
return false
|
||||
} catch (NumberFormatException e) {
|
||||
return false
|
||||
} catch(EOFException e) {
|
||||
|
|
Loading…
Reference in New Issue