From 21cffb13c7c60a70c116c50a0248174c54c1daa1 Mon Sep 17 00:00:00 2001 From: Jan-Peter Klein Date: Mon, 30 Mar 2026 12:46:11 +0200 Subject: [PATCH] remove unused initialList field from DecryptFileNamesViewController --- .../ui/decryptname/DecryptFileNamesViewController.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/org/cryptomator/ui/decryptname/DecryptFileNamesViewController.java b/src/main/java/org/cryptomator/ui/decryptname/DecryptFileNamesViewController.java index 47f260ae2..b7c14199f 100644 --- a/src/main/java/org/cryptomator/ui/decryptname/DecryptFileNamesViewController.java +++ b/src/main/java/org/cryptomator/ui/decryptname/DecryptFileNamesViewController.java @@ -58,8 +58,6 @@ public class DecryptFileNamesViewController implements FxController { private final Stage window; private final Vault vault; private final ResourceBundle resourceBundle; - private final List initialList; - @FXML public TableColumn ciphertextColumn; @FXML @@ -73,7 +71,6 @@ public class DecryptFileNamesViewController implements FxController { this.vault = vault; this.resourceBundle = resourceBundle; this.mapping = new SimpleListProperty<>(FXCollections.observableArrayList()); - this.initialList = List.of(); } @FXML @@ -123,7 +120,6 @@ public class DecryptFileNamesViewController implements FxController { }); } }); - decrypt(initialList); window.setOnHidden(_ -> mapping.clear()); }