Do not bind repository dao in bootstrap module

This commit is contained in:
René Pfeuffer
2019-05-14 11:17:45 +02:00
parent 0f0401b4dd
commit 02ee9425e0
2 changed files with 4 additions and 6 deletions

View File

@@ -41,9 +41,9 @@ public class BootstrapModule extends AbstractModule {
protected void configure() {
install(ThrowingProviderBinder.forModule(this));
ScmConfiguration config = getScmConfiguration();
CipherUtil cu = CipherUtil.getInstance();
// ScmConfiguration config = getScmConfiguration();
//
// CipherUtil cu = CipherUtil.getInstance();
SCMContextProvider context = SCMContext.getContext();
@@ -53,8 +53,6 @@ public class BootstrapModule extends AbstractModule {
bind(RepositoryLocationResolver.class).to(PathBasedRepositoryLocationResolver.class);
bind(RepositoryDAO.class, XmlRepositoryDAO.class);
bind(FileSystem.class, DefaultFileSystem.class);