Skip to content

Commit 87d9653

Browse files
author
livingentity
authored
Remove unused functions (#2057)
They aren't used anywhere.
1 parent d30c44a commit 87d9653

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

dnscrypt-proxy/common.go

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -101,20 +101,6 @@ func Max(a, b int) int {
101101
return b
102102
}
103103

104-
func MinF(a, b float64) float64 {
105-
if a < b {
106-
return a
107-
}
108-
return b
109-
}
110-
111-
func MaxF(a, b float64) float64 {
112-
if a > b {
113-
return a
114-
}
115-
return b
116-
}
117-
118104
func StringReverse(s string) string {
119105
r := []rune(s)
120106
for i, j := 0, len(r)-1; i < len(r)/2; i, j = i+1, j-1 {

0 commit comments

Comments
 (0)