Remove old and broken functionality

configurable-file-paths
Robert Gerus 2015-11-11 01:07:28 +01:00
parent 4deb2609d2
commit 3662108144
1 changed files with 0 additions and 4 deletions

View File

@ -18,10 +18,6 @@ func AddCallback(command, name string, callback func(chan irc.Message, irc.Messa
Callbacks[strings.ToUpper(command)][strings.ToUpper(name)] = callback
}
func RemoveCallback(command, name string) {
delete(Callbacks[command], name)
}
func elementInSlice(s []interface{}, e interface{}) bool {
for _, se := range s {
if se == e {