remove another convinience method from vault class

This commit is contained in:
Armin Schrenk
2021-09-21 16:15:53 +02:00
parent ae2ad6e00f
commit 0b488efbb3
2 changed files with 1 additions and 5 deletions

View File

@@ -192,10 +192,6 @@ public class Vault {
volume.reveal(vaultRevealer);
}
public void reloadConfig() throws IOException {
configCache.reloadConfig();
}
// ******************************************************************************
// Observable Properties
// *******************************************************************************

View File

@@ -118,7 +118,7 @@ public class VaultListManager {
try {
var determinedState = determineVaultState(vault.getPath());
if (determinedState == LOCKED) {
vault.reloadConfig();
vault.getVaultConfigCache().reloadConfig();
}
state.set(determinedState);
yield determinedState;