summaryrefslogtreecommitdiff
path: root/stringfunc.go
diff options
context:
space:
mode:
Diffstat (limited to 'stringfunc.go')
-rw-r--r--stringfunc.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/stringfunc.go b/stringfunc.go
deleted file mode 100644
index ff51b80a..00000000
--- a/stringfunc.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package main
-
-import "strings"
-
-// stringFunc - string manipulation function wrappers
-type stringFunc struct{}
-
-func (t stringFunc) replaceAll(old, new, s string) string {
- return strings.Replace(s, old, new, -1)
-}