From 1b3a2d38362283c5601cbac8acdf2b18f45caced Mon Sep 17 00:00:00 2001 From: YellowDusk04 <3094694434@qq.com> Date: Sun, 23 Aug 2026 16:40:31 +0800 Subject: [PATCH] chore: delete redundant nil assignment Signed-off-by: YellowDusk04 <3094694434@qq.com> --- node.go | 1 - 1 file changed, 1 deletion(-) diff --git a/node.go b/node.go index 022b1001e..bf2de5898 100644 --- a/node.go +++ b/node.go @@ -353,7 +353,6 @@ func (n *node) spill() error { // If the root node split and created a new root then we need to spill that // as well. We'll clear out the children to make sure it doesn't try to respill. if n.parent != nil && n.parent.pgid == 0 { - n.children = nil return n.parent.spill() }