mirror of https://github.com/fluffle/goirc
Move capability sorting inside Slice() method
This commit is contained in:
parent
c2f4dcb7ed
commit
e96dd34661
|
@ -2,7 +2,6 @@ package client
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"sort"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
@ -317,9 +316,6 @@ func (conn *Conn) Cap(subcommmand string, capabilities ...string) {
|
|||
if len(capabilities) == 0 {
|
||||
conn.Raw(CAP + " " + subcommmand)
|
||||
} else {
|
||||
// make output predictable for testing
|
||||
sort.Strings(capabilities)
|
||||
|
||||
cmdPrefix := CAP + " " + subcommmand + " :"
|
||||
for _, args := range splitArgs(capabilities, defaultSplit-len(cmdPrefix)) {
|
||||
conn.Raw(cmdPrefix + args)
|
||||
|
|
|
@ -4,6 +4,7 @@ package client
|
|||
// to manage tracking an irc connection etc.
|
||||
|
||||
import (
|
||||
"sort"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
@ -147,6 +148,8 @@ func (c *capSet) Slice() []string {
|
|||
capSlice = append(capSlice, cap)
|
||||
}
|
||||
|
||||
// make output predictable for testing
|
||||
sort.Strings(capSlice)
|
||||
return capSlice
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue