From f604c14b0df61cff133e070537fa58dcd6cd3c4f Mon Sep 17 00:00:00 2001 From: stemlaud Date: Thu, 25 Sep 2025 21:01:08 +0800 Subject: [PATCH] chore: remove unused min func Signed-off-by: stemlaud --- std/compress/io.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/std/compress/io.go b/std/compress/io.go index 25dadfae47..55f7a0492d 100644 --- a/std/compress/io.go +++ b/std/compress/io.go @@ -250,9 +250,3 @@ func (nr *NumReader) next(v frontend.Variable) frontend.Variable { return nr.last } -func min(a, b int) int { - if a < b { - return a - } - return b -}