From cacfe3693e552724a07ff65ee620cee91787da76 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期二, 23 四月 2024 11:48:17 +0800
Subject: [PATCH] 注释清理
---
smart-core-tool/src/main/java/com/qianwen/core/tool/node/basic/TreeUtil.java | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/smart-core-tool/src/main/java/com/qianwen/core/tool/node/basic/TreeUtil.java b/smart-core-tool/src/main/java/com/qianwen/core/tool/node/basic/TreeUtil.java
index 58868fb..6f65a2a 100644
--- a/smart-core-tool/src/main/java/com/qianwen/core/tool/node/basic/TreeUtil.java
+++ b/smart-core-tool/src/main/java/com/qianwen/core/tool/node/basic/TreeUtil.java
@@ -3,7 +3,6 @@
import java.util.ArrayList;
import java.util.List;
-/* loaded from: blade-core-tool-9.3.0.0-SNAPSHOT.jar:org/springblade/core/tool/node/basic/TreeUtil.class */
public final class TreeUtil {
private TreeUtil() {
throw new UnsupportedOperationException("This is a utility class and cannot be instantiated");
@@ -18,7 +17,7 @@
for (T it : treeNodes) {
if (it.getParentId().equals(treeNode.getId())) {
if (treeNode.getChildren() == null) {
- treeNode.setChildren(new ArrayList());
+ treeNode.setChildren(new ArrayList<>());
}
treeNode.add(it);
}
--
Gitblit v1.9.3