Skip to content

Instantly share code, notes, and snippets.

@idefixcert
Created April 28, 2013 12:40
Show Gist options
  • Save idefixcert/5476773 to your computer and use it in GitHub Desktop.
Save idefixcert/5476773 to your computer and use it in GitHub Desktop.
StaticGenericFactory
public class Test {
public void test() {
Map<String, String> test = newHashMap();
}
public static <K,V> Map<K,V> newHashMap() {
return new HashMap<K, V>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment