blob: 778f63705d10b45a082cc1805f49aefefdfcb093 [file] [log] [blame]
package org.testng.collections;
import java.util.HashMap;
import java.util.Map;
public class Maps {
public static <K, V> Map<K,V> newHashMap() {
return new HashMap<K, V>();
}
public static <K, V> Map<K,V> newHashtable() {
throw new RuntimeException("Hashtable are not supported in GWT");
}
}