Created
October 23, 2019 02:48
-
-
Save satoshun/dbfb225701b8add377f386fc31211f62 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class AppModule_ProvideFugaFactory implements Factory<Fuga> { | |
@Override | |
public Fuga get() { | |
return provideFuga(); | |
} | |
public static AppModule_ProvideFugaFactory create() { | |
return InstanceHolder.INSTANCE; | |
} | |
public static Fuga provideFuga() { | |
return Preconditions.checkNotNull(AppModule.INSTANCE.provideFuga(), "Cannot return null from a non-@Nullable @Provides method"); | |
} | |
private static final class InstanceHolder { | |
private static final AppModule_ProvideFugaFactory INSTANCE = new AppModule_ProvideFugaFactory(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment