Re: Grape and loading classes that extend java.lang.Exception from compiled Groovy bytecode

2017-03-05 Thread Alain Stalder
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

Groovy 2.5 SNAPSHOT and final local variables

2017-03-05 Thread Alain Stalder
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

Re: Groovy 2.5 SNAPSHOT and final local variables

2017-03-05 Thread Paul King
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