Skip to content

Commit

Permalink
Rename variable in PropertiesConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
51-code committed Nov 13, 2024
1 parent 4e4fc67 commit b3dd20c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ public PropertiesConfiguration(final Properties properties) {
.stream()
.collect(
Collectors
.toMap(k -> k.getKey().toString(), k -> k.getValue().toString())
.toMap(
entry -> entry.getKey().toString(),
entry -> entry.getValue().toString()
)
)
)
);
Expand Down

0 comments on commit b3dd20c

Please sign in to comment.