summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/sorcix/irc/strings_legacy.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/sorcix/irc/strings_legacy.go')
-rw-r--r--vendor/github.com/sorcix/irc/strings_legacy.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/github.com/sorcix/irc/strings_legacy.go b/vendor/github.com/sorcix/irc/strings_legacy.go
deleted file mode 100644
index f9328ec7..00000000
--- a/vendor/github.com/sorcix/irc/strings_legacy.go
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2014 Vic Demuzere
-//
-// Use of this source code is governed by the MIT license.
-
-// +build !go1.2
-
-// Debian Wheezy only ships Go 1.0:
-// https://github.com/sorcix/irc/issues/4
-//
-// This code may be removed when Wheezy is no longer supported.
-
-package irc
-
-// indexByte implements strings.IndexByte for Go versions < 1.2.
-func indexByte(s string, c byte) int {
- for i := range s {
- if s[i] == c {
- return i
- }
- }
- return -1
-}