fix: fix code style

This commit is contained in:
chuntaojun 2020-05-14 18:33:16 +08:00
parent 52ea9674be
commit 86652a47e3

View File

@ -62,7 +62,7 @@ public class CoreOpsController {
@GetMapping(value = "/idInfo")
public RestResult<Map<String, Map<Object, Object>>> idInfo() {
Map<String, Map<Object, Object>> info = new HashMap<>();
Map<String, Map<Object, Object>> info = new HashMap<>(8);
idGeneratorManager.getGeneratorMap()
.forEach(
(resource, idGenerator) -> info.put(resource, idGenerator.info()));