From 42f31204a373f263c992c81ad05229dbc73ff6fd Mon Sep 17 00:00:00 2001 From: Jan-Peter Klein Date: Wed, 8 May 2024 09:41:58 +0200 Subject: [PATCH] removed lastUpdateReminder setting --- src/main/java/org/cryptomator/common/settings/Settings.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/org/cryptomator/common/settings/Settings.java b/src/main/java/org/cryptomator/common/settings/Settings.java index b62d3b591..a54e71a4f 100644 --- a/src/main/java/org/cryptomator/common/settings/Settings.java +++ b/src/main/java/org/cryptomator/common/settings/Settings.java @@ -104,7 +104,6 @@ public class Settings { this.windowHeight = new SimpleIntegerProperty(this, "windowHeight", json.windowHeight); this.language = new SimpleStringProperty(this, "language", json.language); this.mountService = new SimpleStringProperty(this, "mountService", json.mountService); - this.lastUpdateReminder = new SimpleObjectProperty<>(this, "lastUpdateReminder", json.lastUpdateReminder); this.lastSuccessfulUpdateCheck = new SimpleObjectProperty<>(this, "lastSuccessfulUpdateCheck", json.lastSuccessfulUpdateCheck); this.directories.addAll(json.directories.stream().map(VaultSettings::new).toList()); @@ -132,7 +131,6 @@ public class Settings { windowHeight.addListener(this::somethingChanged); language.addListener(this::somethingChanged); mountService.addListener(this::somethingChanged); - lastUpdateReminder.addListener(this::somethingChanged); lastSuccessfulUpdateCheck.addListener(this::somethingChanged); } @@ -187,7 +185,6 @@ public class Settings { json.windowHeight = windowHeight.get(); json.language = language.get(); json.mountService = mountService.get(); - json.lastUpdateReminder = lastUpdateReminder.get(); json.lastSuccessfulUpdateCheck = lastSuccessfulUpdateCheck.get(); return json; }