On 14 Gen, 14:55, Chris Lercher <[email protected]> wrote: > DontWantThat is not in my Compile Report. If I remove the transient > keyword, it is. > > Maybe there's something different with your case. Maybe something is > accessing your "getDontWantThat()"? Circular references at least?
As far as I understand, when you do something like what you proposed GWT first compiles all the classes, then prunes the one that are not required. Hence, if your class DontWantThat is a transient member of WantThat it it will be compiled and later on pruned. Try adding a .clone() to DontWantThat and you'll see the compiler exploding...
-- 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.
