From 088e3ee26bec86074361ae7d0156492b2508d4fc Mon Sep 17 00:00:00 2001 From: Sean Chittenden Date: Mon, 1 Feb 2016 22:26:57 -0800 Subject: [PATCH] Cull unused function and its unit test. Pointed out by: @slackpad --- lib/string.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/string.go b/lib/string.go index e9f1280c7c..0780abb632 100644 --- a/lib/string.go +++ b/lib/string.go @@ -1,9 +1,5 @@ package lib -import ( - "strings" -) - // StrContains checks if a list contains a string func StrContains(l []string, s string) bool { for _, v := range l {