diff --git a/src/main/java/org/cryptomator/common/LazyProcessedProperties.java b/src/main/java/org/cryptomator/common/LazyProcessedProperties.java index 6d882c9f9..3e2e60f94 100644 --- a/src/main/java/org/cryptomator/common/LazyProcessedProperties.java +++ b/src/main/java/org/cryptomator/common/LazyProcessedProperties.java @@ -46,7 +46,7 @@ public class LazyProcessedProperties extends PropertiesDecorator { case "localappdata" -> resolveFrom("LOCALAPPDATA", Source.ENV); case "userhome" -> resolveFrom("user.home", Source.PROPS); default -> { - LoggerFactory.getLogger(LazyProcessedProperties.class).warn("Unknown variable @{{}} in property value {}.", match.group(), value); + LoggerFactory.getLogger(LazyProcessedProperties.class).warn("Unknown variable {} in property value {}.", match.group(), value); yield match.group(); } }); diff --git a/src/main/java/org/cryptomator/common/PropertiesDecorator.java b/src/main/java/org/cryptomator/common/PropertiesDecorator.java index 12cc55ccd..5235d50b5 100644 --- a/src/main/java/org/cryptomator/common/PropertiesDecorator.java +++ b/src/main/java/org/cryptomator/common/PropertiesDecorator.java @@ -20,7 +20,7 @@ import java.util.function.BiConsumer; import java.util.function.BiFunction; import java.util.function.Function; -public class PropertiesDecorator extends Properties { +class PropertiesDecorator extends Properties { protected final Properties delegate;