fix(ptracer): delete min func

This commit is contained in:
ZQ 2025-02-11 13:14:49 +08:00
parent 8b7494f796
commit 9df6a51947

View File

@ -254,10 +254,3 @@ func TestSliceBehavior(t *testing.T) {
})
}
}
func min(a, b int) int {
if a < b {
return a
}
return b
}