Skip to content

Commit

Permalink
Polish formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Feb 21, 2019
1 parent 7b0004d commit 0f0adb4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ private List<ConfigurationTable> createConfigTables(
List<String> matchingOverrides = overrides.keySet().stream()
.filter((overrideKey) -> overrideKey.startsWith(keyPrefix))
.collect(Collectors.toList());
matchingOverrides.forEach((match) ->
table.addEntry(overrides.remove(match)));
matchingOverrides
.forEach((match) -> table.addEntry(overrides.remove(match)));
}
List<String> matchingKeys = unmappedKeys.stream()
.filter((key) -> keyPrefixes.stream().anyMatch(key::startsWith))
Expand Down

0 comments on commit 0f0adb4

Please sign in to comment.