Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamBedant/736286065f210b72fbe331a705cbe7b1 to your computer and use it in GitHub Desktop.
Save iamBedant/736286065f210b72fbe331a705cbe7b1 to your computer and use it in GitHub Desktop.
@Generated(
value = "dagger.internal.codegen.ComponentProcessor",
comments = "https://google.github.io/dagger"
)
public final class ApplicationModule_ProvideDatabaseNameFactory implements Factory<String> {
private final ApplicationModule module;
public ApplicationModule_ProvideDatabaseNameFactory(ApplicationModule module) {
this.module = module;
}
@Override
public String get() {
return Preconditions.checkNotNull(
module.provideDatabaseName(), "Cannot return null from a non-@Nullable @Provides method");
}
public static ApplicationModule_ProvideDatabaseNameFactory create(ApplicationModule module) {
return new ApplicationModule_ProvideDatabaseNameFactory(module);
}
public static String proxyProvideDatabaseName(ApplicationModule instance) {
return Preconditions.checkNotNull(
instance.provideDatabaseName(), "Cannot return null from a non-@Nullable @Provides method");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment