:trollface: 漏掉了一个final

This commit is contained in:
VampireAchao 2022-09-19 11:31:39 +08:00
parent 1f6a651fef
commit d9d3c39d4e

View File

@ -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);