mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-22 04:31:27 +00:00
removed unused StringBinding
This commit is contained in:
@@ -75,7 +75,6 @@ public class Vault {
|
||||
private final Mounter mounter;
|
||||
private final Settings settings;
|
||||
private final BooleanProperty showingStats;
|
||||
private final StringBinding lastKnownKeyLoader;
|
||||
|
||||
private final AtomicReference<Mounter.MountHandle> mountHandle = new AtomicReference<>(null);
|
||||
|
||||
@@ -105,7 +104,6 @@ public class Vault {
|
||||
this.settings = settings;
|
||||
this.showingStats = new SimpleBooleanProperty(false);
|
||||
this.quickAccessEntry = new AtomicReference<>(null);
|
||||
this.lastKnownKeyLoader = Bindings.createStringBinding(this::getLastKnownKeyLoader, vaultSettings.lastKnownKeyLoader);
|
||||
}
|
||||
|
||||
// ******************************************************************************
|
||||
@@ -342,14 +340,6 @@ public class Vault {
|
||||
return handle == null ? null : handle.mountObj().getMountpoint();
|
||||
}
|
||||
|
||||
public StringBinding lastKnownKeyLoaderProperty() {
|
||||
return lastKnownKeyLoader;
|
||||
}
|
||||
|
||||
public String getLastKnownKeyLoader() {
|
||||
return vaultSettings.lastKnownKeyLoader.get();
|
||||
}
|
||||
|
||||
public StringBinding displayablePathProperty() {
|
||||
return displayablePath;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user