Please review the following patch, relative to trunk r3728, which fixes a
bug that slipped through when I cleaned up the methodMap sharding in
TypeSerializerCreator to commit to trunk.
--
John A. Tamplin
Software Engineer (GWT), Google
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---
Index: user/src/com/google/gwt/user/rebind/rpc/TypeSerializerCreator.java
===================================================================
--- user/src/com/google/gwt/user/rebind/rpc/TypeSerializerCreator.java (revision 3728)
+++ user/src/com/google/gwt/user/rebind/rpc/TypeSerializerCreator.java (working copy)
@@ -487,7 +487,7 @@
last = n;
}
for (int i = outerIndex; i < last; ++i) {
- JType type = types.get(outerIndex);
+ JType type = types.get(i);
String typeString = getTypeString(type);
srcWriter.print("map[\"" + typeString + "\"]=[");
writeTypeMethods(type);