Re: [EXT] Re: Using `var` as method return type placeholder

2024-12-03 Thread Paul King
Comments inline. On Mon, Dec 2, 2024 at 7:57 PM Gianluca Sartori wrote: > > >> I have had more than 100 (maybe more than 200) Java folks tell me that they >> like >> Groovy because it lets them bring their Java style with them. > > > I am not going into a "mine is bigger than your discussion", w

Re: [EXT] Static type checking error from groovy version 4.0.22

2024-12-03 Thread Milles, Eric (TR Technology) via dev
There have been recent changes in the area of raw types (TreeView field in this case). Instead of holding T as "?" or "? extends Object", it is now resolved to the erasure type "Object". So, TreeCell is not compatible with TreeCell and an error is emitted. If you specified your field with a t