dagger.internal.codegen.writing.ImmediateFutureRequestRepresentation_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.
The newest version!
// Generated by Dagger (https://dagger.dev).
package dagger.internal.codegen.writing;
import androidx.room.compiler.processing.XType;
import dagger.internal.DaggerGenerated;
import dagger.internal.InstanceFactory;
import javax.inject.Provider;
@DaggerGenerated
@SuppressWarnings({
"unchecked",
"rawtypes",
"KotlinInternal",
"KotlinInternalInJava"
})
public final class ImmediateFutureRequestRepresentation_Factory_Impl implements ImmediateFutureRequestRepresentation.Factory {
private final ImmediateFutureRequestRepresentation_Factory delegateFactory;
ImmediateFutureRequestRepresentation_Factory_Impl(
ImmediateFutureRequestRepresentation_Factory delegateFactory) {
this.delegateFactory = delegateFactory;
}
@Override
public ImmediateFutureRequestRepresentation create(
RequestRepresentation instanceRequestRepresentation, XType type) {
return delegateFactory.get(instanceRequestRepresentation, type);
}
public static Provider create(
ImmediateFutureRequestRepresentation_Factory delegateFactory) {
return InstanceFactory.create(new ImmediateFutureRequestRepresentation_Factory_Impl(delegateFactory));
}
public static dagger.internal.Provider createFactoryProvider(
ImmediateFutureRequestRepresentation_Factory delegateFactory) {
return InstanceFactory.create(new ImmediateFutureRequestRepresentation_Factory_Impl(delegateFactory));
}
}