39 super(
"properties-file:" + path.toAbsolutePath(), load(path));
42 private static Map<String, String> load(
final Path path)
throws IOException {
43 final var properties =
new Properties();
44 try (var in = Files.newInputStream(path)) {
48 final var out =
new LinkedHashMap<String, String>();
49 for (
final var key : properties.stringPropertyNames()) {
50 out.put(key, properties.getProperty(key));