Revision: 6911 Author: [email protected] Date: Mon Nov 16 09:44:10 2009 Log: gwt-user should not reference the dev collections, this causes server failures.
Review by: bobv (virtual) http://code.google.com/p/google-web-toolkit/source/detail?r=6911 Modified: /trunk/user/src/com/google/gwt/rpc/server/RPC.java ======================================= --- /trunk/user/src/com/google/gwt/rpc/server/RPC.java Wed Oct 28 09:10:53 2009 +++ /trunk/user/src/com/google/gwt/rpc/server/RPC.java Mon Nov 16 09:44:10 2009 @@ -51,7 +51,7 @@ * Static map of classes to sets of interfaces (e.g. classes). Optimizes * lookup of interfaces for security. */ - private static final Map<Class<?>, Set<String>> serviceToImplementedInterfacesMap = new com.google.gwt.dev.util.collect.HashMap<Class<?>, Set<String>>(); + private static final Map<Class<?>, Set<String>> serviceToImplementedInterfacesMap = new HashMap<Class<?>, Set<String>>(); static { // The space is needed to prevent name collisions -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
