remove leftovers from autolock tab

This commit is contained in:
Armin Schrenk
2021-08-13 15:32:57 +02:00
parent a6e28ca387
commit 1e2b80d02b
2 changed files with 0 additions and 6 deletions

View File

@@ -21,8 +21,4 @@ public enum SelectedVaultOptionsTab {
*/
KEY,
/**
* Show Auto-Lock tab
*/
AUTOLOCK,
}

View File

@@ -23,7 +23,6 @@ public class VaultOptionsController implements FxController {
public Tab generalTab;
public Tab mountTab;
public Tab keyTab;
public Tab autoLockTab;
@Inject
VaultOptionsController(@VaultOptionsWindow Stage window, ObjectProperty<SelectedVaultOptionsTab> selectedTabProperty) {
@@ -48,7 +47,6 @@ public class VaultOptionsController implements FxController {
case ANY, GENERAL -> generalTab;
case MOUNT -> mountTab;
case KEY -> keyTab;
case AUTOLOCK -> autoLockTab;
};
}