dagger.internal.codegen.base.ElementFormatter_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.
package dagger.internal.codegen.base;
import dagger.internal.DaggerGenerated;
import dagger.internal.Factory;
import javax.annotation.Generated;
@DaggerGenerated
@Generated(
value = "dagger.internal.codegen.ComponentProcessor",
comments = "https://dagger.dev"
)
@SuppressWarnings({
"unchecked",
"rawtypes"
})
public final class ElementFormatter_Factory implements Factory {
@Override
public ElementFormatter get() {
return newInstance();
}
public static ElementFormatter_Factory create() {
return InstanceHolder.INSTANCE;
}
public static ElementFormatter newInstance() {
return new ElementFormatter();
}
private static final class InstanceHolder {
private static final ElementFormatter_Factory INSTANCE = new ElementFormatter_Factory();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy