Skip to content

Commit

Permalink
Remove acctdb references
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanrdoherty committed Feb 28, 2024
1 parent 16bca8d commit 6882f15
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Model/src/main/java/org/gusdb/wdk/model/WdkModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,8 @@ public static WdkModel construct(String projectId, String gusHome) throws WdkMod
private String _projectId;
private long _startupTime;


private DatabaseInstance appDb;
private DatabaseInstance userDb;
private DatabaseInstance accountDb;

private Optional<UserDatasetStore> _userDatasetStore;

Expand Down Expand Up @@ -656,7 +654,6 @@ public void close() {
stepAnalysisFactory.shutDown();
releaseDb(appDb);
releaseDb(userDb);
releaseDb(accountDb);
Events.shutDown();
managedCloseables.close();
LOG.info("WDK Model resources released.");
Expand Down Expand Up @@ -696,10 +693,6 @@ public DatabaseInstance getUserDb() {
return userDb;
}

public DatabaseInstance getAccountDb() {
return accountDb;
}

public UserFactory getUserFactory() {
return new UserFactory(this);
}
Expand Down

0 comments on commit 6882f15

Please sign in to comment.