All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dagger.internal.codegen.writing.ComponentRequirementBindingExpression_Factory_Impl Maven / Gradle / Ivy

There is a newer version: 2.54
Show newest version
package dagger.internal.codegen.writing;

import dagger.internal.DaggerGenerated;
import dagger.internal.InstanceFactory;
import dagger.internal.codegen.binding.ComponentRequirement;
import dagger.internal.codegen.binding.ContributionBinding;
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 ComponentRequirementBindingExpression_Factory_Impl implements ComponentRequirementBindingExpression.Factory {
  private final ComponentRequirementBindingExpression_Factory delegateFactory;

  ComponentRequirementBindingExpression_Factory_Impl(
      ComponentRequirementBindingExpression_Factory delegateFactory) {
    this.delegateFactory = delegateFactory;
  }

  @Override
  public ComponentRequirementBindingExpression create(ContributionBinding binding,
      ComponentRequirement componentRequirement) {
    return delegateFactory.get(binding, componentRequirement);
  }

  public static Provider create(
      ComponentRequirementBindingExpression_Factory delegateFactory) {
    return InstanceFactory.create(new ComponentRequirementBindingExpression_Factory_Impl(delegateFactory));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy