From f938bc70df22017c20891cce77230597ff2aaeb5 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Mon, 30 Sep 2013 20:24:18 +0100 Subject: [PATCH] Remove long deprecated functions too --- labels.go | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/labels.go b/labels.go index 7742dbd9..e7707b2e 100644 --- a/labels.go +++ b/labels.go @@ -160,17 +160,3 @@ func PrevLabel(s string, n int) (i int, start bool) { } return lab[len(lab)-n], false } - -func LenLabels(s string) int { - println("LenLabels is to be removed in future versions, for the better named CountLabel") - return CountLabel(s) -} -func SplitLabels(s string) []string { - println("SplitLabels is to be removed in future versions, for the better named SplitDomainName") - return SplitDomainName(s) -} - -func CompareLabels(s1, s2 string) (n int) { - println("CompareLabels is to be removed in future versions, for better named CompareDomainName") - return CompareDomainName(s1, s2) -}