Re: Proxying default methods does not work with 5.5.0-beta-2

2019-07-30 Thread Thiago H. de Paula Figueiredo
On Fri, Jul 12, 2019 at 10:03 AM Chris Poulsen wrote: > Hi > Hello! > I've just gotten around to test our products against Tapestry 5.5 > (master/HEAD) - Everything seems to work fine with the latest code, good > work! > Thanks for the info! > Would it be possible to get a tagged beta (or r

Re: Proxying default methods does not work with 5.5.0-beta-2

2019-07-12 Thread Chris Poulsen
Hi I've just gotten around to test our products against Tapestry 5.5 (master/HEAD) - Everything seems to work fine with the latest code, good work! Would it be possible to get a tagged beta (or rc) version published to some repository that we can rely on for stable builds? I can see several 5.4

Re: Proxying default methods does not work with 5.5.0-beta-2

2019-06-21 Thread Thiago H. de Paula Figueiredo
I've just committed a fix for this issue. On Mon, May 6, 2019 at 2:35 PM Oliver Kaiser wrote: > Hi everyone, > > given something like this: > > public interface Blub { >public default String foo() { > return "Default"; >} > } > public class BlubImpl implements Blub { >@Override

Re: Proxying default methods does not work with 5.5.0-beta-2

2019-05-07 Thread Thiago H. de Paula Figueiredo
On Mon, May 6, 2019 at 2:35 PM Oliver Kaiser wrote: > Hi everyone, > Hello! > the log output of PlasticProxyFactory shows that the method is skipped > in the generated class > > seems to be related to this commit > > https://github.com/apache/tapestry-5/commit/709d282bfc626ce55cde07cbf909c0b86

Proxying default methods does not work with 5.5.0-beta-2

2019-05-06 Thread Oliver Kaiser
Hi everyone, given something like this: public interface Blub { public default String foo() { return "Default"; } } public class BlubImpl implements Blub { @Override public String foo() { return "Impl"; } } when calling "registry.getService(Blub.class).foo()" using beta-1 this