dagger.internal.codegen.binding.SourceFiles_Factory 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.binding;
import dagger.internal.DaggerGenerated;
import dagger.internal.Factory;
import dagger.internal.QualifierMetadata;
import dagger.internal.ScopeMetadata;
@ScopeMetadata
@QualifierMetadata
@DaggerGenerated
@SuppressWarnings({
"unchecked",
"rawtypes",
"KotlinInternal",
"KotlinInternalInJava"
})
public final class SourceFiles_Factory implements Factory {
@Override
public SourceFiles get() {
return newInstance();
}
public static SourceFiles_Factory create() {
return InstanceHolder.INSTANCE;
}
public static SourceFiles newInstance() {
return new SourceFiles();
}
private static final class InstanceHolder {
private static final SourceFiles_Factory INSTANCE = new SourceFiles_Factory();
}
}