aboutsummaryrefslogtreecommitdiffstats
path: root/util/text
diff options
context:
space:
mode:
Diffstat (limited to 'util/text')
-rw-r--r--util/text/text.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/util/text/text.go b/util/text/text.go
index 81cc870b..87db8c30 100644
--- a/util/text/text.go
+++ b/util/text/text.go
@@ -323,10 +323,3 @@ func splitWord(word string, length int) (string, string) {
return string(result), string(leftover)
}
-
-func minInt(a, b int) int {
- if a > b {
- return b
- }
- return a
-}