The warning was accidentally disabled in the 1.5 RC versions. It should not prevent your application from working correctly since it is only a warning and final fields have never been serialized.
You can disable the warning by adding the following line to you module file (*.gwt.xml): <set-property name="gwt.suppressNonStaticFinalFieldWarnings" value="true" /> On Fri, Aug 29, 2008 at 5:25 AM, bummel <[EMAIL PROTECTED]> wrote: > > since i upgraded from 1.5.1 to 1.5.2, I ecounterd the same behaviour > that makes my app unable to work properly > > rolling back the upgrade waiting for better times... > > On 29 Aug., 06:44, elliot <[EMAIL PROTECTED]> wrote: > > Map<String, String> as an rpc parameter generates a warning > > immediately after updating from 1.5.1 to 1.5.2 > > > > Analyzing methods: > > public abstract List<String> getStuff > > (java.util.Map<java.lang.String, java.lang.String> data) > > Parameter: java.util.Map<java.lang.String, > > java.lang.String> data > > java.util.Map<java.lang.String, java.lang.String> > > Verifying instantiability > > > > com.google.gwt.i18n.client.impl.ConstantMap > > Analyzing the fields of type > > 'com.google.gwt.i18n.client.impl.ConstantMap' that qualify for > > serialization > > [WARN] Field 'private final > > > com.google.gwt.i18n.client.impl.ConstantMap.OrderedConstantSet<java.lang.String> > > keys' will not be serialized because it is final > > > > keys used to be final, it aint different now. > > > > havent had a chance to seriously look into it, but wanted to know if > > anyone else saw it. > > > > -- Miguel --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
