On 21 mai, 17:31, KeremTiryaki <[email protected]> wrote: > and I want to add something... > Development mode doesn't care about optimization, It is showing the > results as quick as possible
Actually, dev mode runs Java whereas prod mode compiles to JavaScript. This means that un dev mode you're using the true java.lang.String or java.util.ArrayList for instance, whereas in prod mode it's the emulated version that's being used. It sometimes lead to different results (Java's Date is quite not the same as JavaScript's one) -- 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.
