aboutsummaryrefslogtreecommitdiffstats
path: root/ui.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui.go')
-rw-r--r--ui.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/ui.go b/ui.go
index 6a56bd9..115df33 100644
--- a/ui.go
+++ b/ui.go
@@ -156,11 +156,3 @@ func fill(s []rune, c rune) {
s[i] = c
}
}
-
-// min returns the lesser of x or y.
-func min(x, y int) int {
- if x < y {
- return x
- }
- return y
-}