1
0
forked from iarv/nntpchan

Merge pull request #190 from cargoedit/master

chore: remove unused min/max func
This commit is contained in:
tomoko-dev
2025-10-10 13:51:07 -04:00
committed by GitHub

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
}