Fix a few redundancies in replies.

This commit is contained in:
Jeremy Latt
2012-12-09 15:20:21 -08:00
parent ae2444c423
commit 24b39fe847
2 changed files with 18 additions and 25 deletions

View File

@@ -1,9 +1,5 @@
package irc
import (
"sort"
)
type Channel struct {
name string
key string
@@ -44,7 +40,6 @@ func (ch *Channel) Nicks() []string {
nicks[i] = member.Nick()
i++
}
sort.Strings(nicks)
return nicks
}