Removed commented code.

This commit is contained in:
Raman Arora 2020-02-11 11:17:28 -05:00
parent ed1443aa68
commit b79b91f502
2 changed files with 1 additions and 3 deletions

View File

@ -131,8 +131,7 @@ final class PostgresCentralRepo extends RdbmsCentralRepo {
CentralRepoDbUtil.closeConnection(conn); CentralRepoDbUtil.closeConnection(conn);
} }
//dbSettings.insertDefaultDatabaseContent();
RdbmsCentralRepoSchemaFactory centralRepoSchemaFactory = new RdbmsCentralRepoSchemaFactory(CentralRepoPlatforms.POSTGRESQL); RdbmsCentralRepoSchemaFactory centralRepoSchemaFactory = new RdbmsCentralRepoSchemaFactory(CentralRepoPlatforms.POSTGRESQL);
centralRepoSchemaFactory.insertDefaultDatabaseContent(); centralRepoSchemaFactory.insertDefaultDatabaseContent();
} }

View File

@ -144,7 +144,6 @@ final class SqliteCentralRepo extends RdbmsCentralRepo {
CentralRepoDbUtil.closeConnection(conn); CentralRepoDbUtil.closeConnection(conn);
} }
//RdbmsCentralRepoSchemaFactory.getInstance().insertDefaultDatabaseContent();
RdbmsCentralRepoSchemaFactory centralRepoSchemaFactory = new RdbmsCentralRepoSchemaFactory(CentralRepoPlatforms.SQLITE); RdbmsCentralRepoSchemaFactory centralRepoSchemaFactory = new RdbmsCentralRepoSchemaFactory(CentralRepoPlatforms.SQLITE);
centralRepoSchemaFactory.insertDefaultDatabaseContent(); centralRepoSchemaFactory.insertDefaultDatabaseContent();
} finally { } finally {