1
0
forked from iarv/nntpchan

chore: remove unused min/max func

Signed-off-by: cargoedit <cargoedit@outlook.com>
This commit is contained in:
cargoedit
2025-09-25 17:22:41 +08:00
parent 54b605329a
commit 50cb850273

View File

@@ -432,17 +432,3 @@ func fmtB(dst []byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
return dst
}
func min(a, b int) int {
if a < b {
return a
}
return b
}
func max(a, b int) int {
if a > b {
return a
}
return b
}