Closes gh-11792
This commit is contained in:
Johnny Lim
2018-01-26 22:38:50 +09:00
committed by Stephane Nicoll
parent aa36288cee
commit a46e047c5d
13 changed files with 18 additions and 19 deletions

View File

@@ -142,7 +142,7 @@ class BootArchiveSupport {
Map<RelativePath, FileCopyDetailsInternal> detailsByPath = new TreeMap<>();
stream.process((details) -> detailsByPath.put(details.getRelativePath(),
details));
detailsByPath.values().stream().forEach(action::processFile);
detailsByPath.values().forEach(action::processFile);
});
}