Community
Participate
Working Groups
Depending on the source model, the code that gets generated (in the package implementation) to initialize reflection helpers when targeting the GWT runtime platform can contain duplicate registrations, e.g., Reflect.register(String.class, new Reflect.Helper() { public boolean isInstance(Object instance) { return instance instanceof String; } public Object newArrayInstance(int size) { return new String[size]; } }); Reflect.register(String.class, new Reflect.Helper() { public boolean isInstance(Object instance) { return instance instanceof String; } public Object newArrayInstance(int size) { return new String[size]; } });
The fix is committed to CVS for 2.8.
The changes are available in builds.