From 4c2e6088a99aec2920963b6accb6cf7498be0d1f Mon Sep 17 00:00:00 2001 From: Jan-Peter Klein Date: Mon, 17 Jul 2023 11:26:59 +0200 Subject: [PATCH] reformat code and optimized imports --- src/main/java/org/cryptomator/common/settings/Settings.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/org/cryptomator/common/settings/Settings.java b/src/main/java/org/cryptomator/common/settings/Settings.java index 90e6b4408..fd9f01904 100644 --- a/src/main/java/org/cryptomator/common/settings/Settings.java +++ b/src/main/java/org/cryptomator/common/settings/Settings.java @@ -26,7 +26,6 @@ import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.geometry.NodeOrientation; import java.util.function.Consumer; -import java.time.LocalDate; public class Settings { @@ -107,7 +106,7 @@ public class Settings { this.displayConfiguration = new SimpleStringProperty(this, "displayConfiguration", json.displayConfiguration); this.language = new SimpleStringProperty(this, "language", json.language); this.mountService = new SimpleStringProperty(this, "mountService", json.mountService); - this.lastUpdateCheck = new SimpleStringProperty(this,"lastUpdateCheck",json.lastUpdateCheck); + this.lastUpdateCheck = new SimpleStringProperty(this, "lastUpdateCheck", json.lastUpdateCheck); this.directories.addAll(json.directories.stream().map(VaultSettings::new).toList());