summaryrefslogtreecommitdiff
path: root/utilities.go
diff options
context:
space:
mode:
authorHorus32015-03-20 18:05:18 +0100
committerHorus32015-03-20 18:05:18 +0100
commit17bea88eb3f6e2bc5f63641437a997cc8bd32881 (patch)
treeb683c2db5abdd134bd5e41ced9e257655fe40578 /utilities.go
parent410504e069d37c522dca6bf820e9fc4cea2de871 (diff)
downloadfreemail-17bea88eb3f6e2bc5f63641437a997cc8bd32881.tar.gz
Too much CSS for now.
Diffstat (limited to 'utilities.go')
-rw-r--r--utilities.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/utilities.go b/utilities.go
index 199a8b9..60423dc 100644
--- a/utilities.go
+++ b/utilities.go
@@ -26,17 +26,3 @@ func CompareStrings(strs ...string) bool {
}
return true
}
-
-// Checks for equality in two slices from typ IP
-/*
-func CompareIPs(a, b []IP) bool {
- if len(a) != len(b) {
- return false
- }
- for k := range a {
- if a[k] != b[i] {
- return false
- }
- }
-}
-*/