Skip to content

Instantly share code, notes, and snippets.

@img
Created August 21, 2018 08:27
Show Gist options
  • Save img/9c5ab9b45482185f78f32347cae2840d to your computer and use it in GitHub Desktop.
Save img/9c5ab9b45482185f78f32347cae2840d to your computer and use it in GitHub Desktop.
public static <T> T getService(Object context, Class<T> service, String filter) {
Future<T> future = getServiceFuture(service, filter);
return Futures.getUnchecked(future);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment