This commit is contained in:
Stephane Nicoll
2019-03-15 14:19:54 +01:00
parent 9465a70fa6
commit 1ad3dae770
6 changed files with 18 additions and 33 deletions

View File

@@ -73,9 +73,7 @@ public class DependencyRangesInfoContributor implements InfoContributor {
}
}
Map<String, Object> depInfo = new LinkedHashMap<>();
dep.forEach((k, r) -> {
depInfo.put(k, "Spring Boot " + r);
});
dep.forEach((k, r) -> depInfo.put(k, "Spring Boot " + r));
details.put(dependency.getId(), depInfo);
}
}