124125126127128129130131132
@SuppressWarnings("unused") @Provides @Inject @Singleton private IsisSystemFactory provideIsisSystemFactory(final InstallerLookup installerLookup) { final IsisSystemThatUsesInstallersFactory systemFactory = new IsisSystemThatUsesInstallersFactory(installerLookup); systemFactory.init(); return systemFactory; }
118119120121122123124125126