get rid of useless assignment

This commit is contained in:
Jeremy Latt 2014-03-28 12:11:01 -07:00
parent 63a46498ce
commit f32df20a83
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ func (target *Client) MultilineReply(names []string, code NumericCode, format st
for to < len(names) {
if (from < (to - 1)) && tooLong(names[from:to]) {
target.NumericReply(code, format, argsAndNames(names[from:to-1])...)
from, to = to-1, to
from = to - 1
} else {
to += 1
}