Polish formatting

This commit is contained in:
Andy Wilkinson 2019-02-21 22:04:56 +00:00
parent 7b0004d6c3
commit 0f0adb4cd0
1 changed files with 2 additions and 2 deletions

View File

@ -92,8 +92,8 @@ public class ConfigurationMetadataDocumentWriter {
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))