Skip to content

Commit

Permalink
Windows native-image fix (#2336)
Browse files Browse the repository at this point in the history
Signed-off-by: David Kral <david.k.kral@oracle.com>
  • Loading branch information
Verdent authored Sep 9, 2020
1 parent 0cc91a0 commit 18d4c7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class MpEnvironmentVariablesSource implements ConfigSource {
private final Map<String, Cached> cache = new ConcurrentHashMap<>();

MpEnvironmentVariablesSource() {
this.env = System.getenv();
this.env = Map.copyOf(System.getenv());
}

@Override
Expand Down

0 comments on commit 18d4c7c

Please sign in to comment.