Skip to content

Instantly share code, notes, and snippets.

@joseprl89
Created May 25, 2018 17:57
Show Gist options
  • Save joseprl89/08bb8b0a49f00ae74b7388669311c83c to your computer and use it in GitHub Desktop.
Save joseprl89/08bb8b0a49f00ae74b7388669311c83c to your computer and use it in GitHub Desktop.
public <T extends ViewModel> T create(@NonNull Class<T> modelClass) {
try {
return modelClass.newInstance();
} catch (InstantiationException e) {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment