mirror of https://github.com/fluffle/goirc
Turns out gofmt isn't big on spaces sometimes.
This commit is contained in:
parent
de66051d07
commit
3e1b2c0f81
|
@ -97,7 +97,7 @@ func (conn *Conn) h_JOIN(line *Line) {
|
|||
// first we've seen of this channel, so should be us joining it
|
||||
// NOTE this will also take care of n == nil && ch == nil
|
||||
if n != conn.Me {
|
||||
logging.Warn("irc.JOIN(): JOIN to unknown channel %s recieved " +
|
||||
logging.Warn("irc.JOIN(): JOIN to unknown channel %s recieved "+
|
||||
"from (non-me) nick %s", line.Args[0], line.Nick)
|
||||
return
|
||||
}
|
||||
|
|
|
@ -130,7 +130,7 @@ func (conn *Conn) ParseChannelModes(ch *Channel, modes string, modeargs []string
|
|||
if len(modeargs) != 0 {
|
||||
ch.Modes.Key, modeargs = modeargs[0], modeargs[1:]
|
||||
} else {
|
||||
logging.Warn("irc.ParseChanModes(): not enough arguments to " +
|
||||
logging.Warn("irc.ParseChanModes(): not enough arguments to "+
|
||||
"process MODE %s %s%s", ch.Name, modestr, m)
|
||||
}
|
||||
case 'l':
|
||||
|
@ -138,7 +138,7 @@ func (conn *Conn) ParseChannelModes(ch *Channel, modes string, modeargs []string
|
|||
ch.Modes.Limit, _ = strconv.Atoi(modeargs[0])
|
||||
modeargs = modeargs[1:]
|
||||
} else {
|
||||
logging.Warn("irc.ParseChanModes(): not enough arguments to " +
|
||||
logging.Warn("irc.ParseChanModes(): not enough arguments to "+
|
||||
"process MODE %s %s%s", ch.Name, modestr, m)
|
||||
}
|
||||
case 'q', 'a', 'o', 'h', 'v':
|
||||
|
@ -159,11 +159,11 @@ func (conn *Conn) ParseChannelModes(ch *Channel, modes string, modeargs []string
|
|||
}
|
||||
modeargs = modeargs[1:]
|
||||
} else {
|
||||
logging.Warn("irc.ParseChanModes(): untracked nick %s " +
|
||||
logging.Warn("irc.ParseChanModes(): untracked nick %s "+
|
||||
"recieved MODE on channel %s", modeargs[0], ch.Name)
|
||||
}
|
||||
} else {
|
||||
logging.Warn("irc.ParseChanModes(): not enough arguments to " +
|
||||
logging.Warn("irc.ParseChanModes(): not enough arguments to "+
|
||||
"process MODE %s %s%s", ch.Name, modestr, m)
|
||||
}
|
||||
}
|
||||
|
@ -208,7 +208,7 @@ func (ch *Channel) AddNick(n *Nick) {
|
|||
ch.Nicks[n] = new(ChanPrivs)
|
||||
n.Channels[ch] = ch.Nicks[n]
|
||||
} else {
|
||||
logging.Warn("irc.Channel.AddNick(): trying to add already-present " +
|
||||
logging.Warn("irc.Channel.AddNick(): trying to add already-present "+
|
||||
"nick %s to channel %s", n.Nick, ch.Name)
|
||||
}
|
||||
}
|
||||
|
@ -257,7 +257,7 @@ func (n *Nick) AddChannel(ch *Channel) {
|
|||
ch.Nicks[n] = new(ChanPrivs)
|
||||
n.Channels[ch] = ch.Nicks[n]
|
||||
} else {
|
||||
logging.Warn("irc.Nick.AddChannel(): trying to add already-present " +
|
||||
logging.Warn("irc.Nick.AddChannel(): trying to add already-present "+
|
||||
"channel %s to nick %s", ch.Name, n.Nick)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue