通用树生成 新功能 具备高自由 灵活 扩展特性

This commit is contained in:
liqiang 2020-03-08 19:27:15 +08:00
parent 95093becb0
commit 864bf93a27

View File

@ -65,6 +65,7 @@ public class TreeUtil {
* @param maxDeep 最大递归深度 可能为null即不限制
*/
private static void innerBuild(List<TreeNodeMap> treeNodes, TreeNodeMap parentNode, int deep, Integer maxDeep) {
if (CollectionUtil.isEmpty(treeNodes)) {
return;
}