Fixed ERRAI-800: Array marshaller caching causes an error on refresh The fix is to not cache array marshallers. GWT's rebind cache relies on…
Show more
Fixed ERRAI-800: Array marshaller caching causes an error on refreshThe fix is to not cache array marshallers. GWT's rebind cache relieson the type name provided to the generator which contains the outerclass (the marshaller class that uses the array marshaller). Sincewe can't guarantee what this outer class is when lazily generatingarray marshallers we can't leverage the built-in rebind cache inthis case.
Show less