22.08.2016, 08:26
Found some confused bug:
https://github.com/Shoebill/shoebill...scription.java at line: 116
catch (NullPointerException e)
{
throw new FileNotFoundException(configFilename);
}
I had NPE but file was found (wrong configuration syntax)
Please do not throw FileNotFoundException in that case. Its very confusing!
https://github.com/Shoebill/shoebill...scription.java at line: 116
catch (NullPointerException e)
{
throw new FileNotFoundException(configFilename);
}
I had NPE but file was found (wrong configuration syntax)
Please do not throw FileNotFoundException in that case. Its very confusing!