Skip to content

Instantly share code, notes, and snippets.

@jamesdube
Created November 15, 2018 12:41
Show Gist options
  • Save jamesdube/b1537ba3ed0b926725c1d1d1c0286acc to your computer and use it in GitHub Desktop.
Save jamesdube/b1537ba3ed0b926725c1d1d1c0286acc to your computer and use it in GitHub Desktop.
private <T> T factory(Class<T> clazz ){
try {
return clazz.newInstance();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment