dagger.internal.codegen.writing.ImmediateFutureBindingExpression_Factory_Impl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dagger-compiler Show documentation
Show all versions of dagger-compiler Show documentation
A fast dependency injector for Android and Java.
package dagger.internal.codegen.writing;
import dagger.internal.DaggerGenerated;
import dagger.internal.InstanceFactory;
import dagger.spi.model.Key;
import javax.annotation.Generated;
import javax.inject.Provider;
@DaggerGenerated
@Generated(
value = "dagger.internal.codegen.ComponentProcessor",
comments = "https://dagger.dev"
)
@SuppressWarnings({
"unchecked",
"rawtypes"
})
public final class ImmediateFutureBindingExpression_Factory_Impl implements ImmediateFutureBindingExpression.Factory {
private final ImmediateFutureBindingExpression_Factory delegateFactory;
ImmediateFutureBindingExpression_Factory_Impl(
ImmediateFutureBindingExpression_Factory delegateFactory) {
this.delegateFactory = delegateFactory;
}
@Override
public ImmediateFutureBindingExpression create(Key key) {
return delegateFactory.get(key);
}
public static Provider create(
ImmediateFutureBindingExpression_Factory delegateFactory) {
return InstanceFactory.create(new ImmediateFutureBindingExpression_Factory_Impl(delegateFactory));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy