Fixed build break in HashMapBenchmark where the generated code tried to pass a parameter the declared code did not accept.

Review by: tobyr (desk check)


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@1824 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/emultest/java/util/HashMapBenchmark.java b/user/test/com/google/gwt/emultest/java/util/HashMapBenchmark.java
index e1486e1..f35e371 100644
--- a/user/test/com/google/gwt/emultest/java/util/HashMapBenchmark.java
+++ b/user/test/com/google/gwt/emultest/java/util/HashMapBenchmark.java
@@ -192,7 +192,7 @@
     testHashMapStringAdds(size);
   }
 
-  protected void initMap() {
-    map = new HashMap<Object, Object>();
+  protected void initMap(Integer size) {
+    map = new HashMap<Object, Object>(size);
   }
 }