For completeness, I have created a GROOVY issue for this, just to have
it reported in case somebody else stumbles into this behavior:
https://issues.apache.org/jira/browse/GROOVY-8108
Not sure if this is the right/best place to report this, but I got this
with the current head of the master branch of
https://github.com/apache/groovy.git (ec3179a455):
--
final File file = new File('whatever')
final List lines
try {
lines = file.readLines()
} catch (IOException e) {
return
I noticed a few similar problems recently (GROOVY-8093, GROOVY-8094)
but yours looks slightly different again. Probably worth creating an
issue.
On Sun, Mar 5, 2017 at 11:16 PM, Alain Stalder wrote:
> Not sure if this is the right/best place to report this, but I got this with
> the current head