Merge pull request #3992 from zhangzhiyong-ay/v5-dev

优化TreeBuilder append重复向idTreeMap中put问题
This commit is contained in:
Golden Looly 2025-07-21 11:21:37 +08:00 committed by GitHub
commit 40599b028e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -188,7 +188,9 @@ public class TreeBuilder<E> implements Builder<Tree<E>> {
}
}
return append(map);
// this.idTreeMap重复put
// return append(map);
return this;
}
/**
@ -224,7 +226,9 @@ public class TreeBuilder<E> implements Builder<Tree<E>> {
}
}
return append(map);
// this.idTreeMap重复put
// return append(map);
return this;
}
/**