Skip to content

Instantly share code, notes, and snippets.

@Philio
Created April 22, 2019 12:27
Show Gist options
  • Save Philio/77fe65a2cc20e79e796c8aa124a3245f to your computer and use it in GitHub Desktop.
Save Philio/77fe65a2cc20e79e796c8aa124a3245f to your computer and use it in GitHub Desktop.
public final class DaggerBindingComponent implements BindingComponent {
private Provider<ImageBindingAdapter> provideImageBindingAdapterProvider;
@Override
public ImageBindingAdapter getImageBindingAdapter() {
return provideImageBindingAdapterProvider.get();
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment