This commit is contained in:
Armin Schrenk
2023-06-29 18:24:48 +02:00
parent 24fc2888ef
commit 12e990a8b3
2 changed files with 2 additions and 2 deletions

View File

@@ -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();
}
});

View File

@@ -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;