If you feel strongly that something should make RC2 please raise this on this thread. I will be cutting RC2 tomorrow PST time.
If you feel strongly that something should make RC2 please raise this on this thread. I will be cutting RC2 tomorrow PST time.To avoid incorrect warnings: https://gwt-review.googlesource.com/#/c/16540/
--
You received this message because you are subscribed to the Google Groups "GWT Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-co...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/0f8eca73-e432-4074-bb26-019f12b724a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Kay, can you offer a reproducible example of this, and confirm that you have no older copy of GWT (like gwt-user/gwt-dev from 2.8.0-beta1) on your classpath? To test this, I just built some quick autobeans in a simple project (so that I didn't need a full server to back it):public DefaultMethodInGeneratorTest implements EntryPoint {@Overridepublic void onModuleLoad() {ABF abf = GWT.create(ABF.class);abf.bean().as().buildName();}public interface ABF extends AutoBeanFactory {AutoBean<SampleBean> bean();}public interface SampleBean {String getFirstName();String getLastName();default String buildName() {return getLastName() + ", " + getFirstName();}}}This compiles correctly (for me, with 2.8.0-RC1), even though in prior GWT versions you would need to list buildName() as a @Category.
On Wed, Aug 10, 2016 at 3:13 AM Jens <jens.ne...@gmail.com> wrote:
If you feel strongly that something should make RC2 please raise this on this thread. I will be cutting RC2 tomorrow PST time.--To avoid incorrect warnings: https://gwt-review.googlesource.com/#/c/16540/
You received this message because you are subscribed to the Google Groups "GWT Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-contributors+unsubscribe@googlegroups.com.
@ProxyFor(value = Test.class)public interface TextProxy extends ValueProxy {
default String getTest() { return ""; }
static String getTest2() { return ""; }
}