mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-24 18:04:54 +08:00
:trollface: 漏掉了一个final
This commit is contained in:
parent
1f6a651fef
commit
d9d3c39d4e
@ -487,7 +487,7 @@ public class CollectorUtil {
|
|||||||
childrenSetter.accept(parent, children);
|
childrenSetter.accept(parent, children);
|
||||||
recursiveRef.get().accept(children);
|
recursiveRef.get().accept(children);
|
||||||
});
|
});
|
||||||
List<T> parents = parentFactory.apply(pIdValuesMap);
|
final List<T> parents = parentFactory.apply(pIdValuesMap);
|
||||||
if (!parents.isEmpty()) {
|
if (!parents.isEmpty()) {
|
||||||
recursiveRef.set(recursive);
|
recursiveRef.set(recursive);
|
||||||
recursiveRef.get().accept(parents);
|
recursiveRef.get().accept(parents);
|
||||||
|
Loading…
Reference in New Issue
Block a user