rename unused var

This commit is contained in:
Sebastian Stenzel
2023-09-18 19:29:35 +02:00
parent 8e9d54b44b
commit 6c5ee14c73

View File

@@ -103,8 +103,8 @@ public class StartController implements FxController {
private void loadingKeyFailed(Throwable e) {
switch (e) {
case UnlockCancelledException uce -> {} //ok
case VaultKeyInvalidException vkie -> {
case UnlockCancelledException _ -> {} //ok
case VaultKeyInvalidException _ -> {
LOG.error("Invalid key"); //TODO: specific error screen
appWindows.showErrorWindow(e, window, null);
}