all: Dead code cleanup

This commit is contained in:
Audrius Butkevicius
2016-04-09 01:10:31 +00:00
committed by Jakob Borg
parent 393798098c
commit 2eb8a9ef56
5 changed files with 1 additions and 44 deletions

View File

@@ -566,16 +566,6 @@ func (c *rawConnection) handleResponse(msgID int, resp ResponseMessage) {
c.awaitingMut.Unlock()
}
func (c *rawConnection) handlePong(msgID int) {
c.awaitingMut.Lock()
if rc := c.awaiting[msgID]; rc != nil {
c.awaiting[msgID] = nil
rc <- asyncResult{}
close(rc)
}
c.awaitingMut.Unlock()
}
func (c *rawConnection) send(msgID int, msgType int, msg encodable, done chan struct{}) bool {
if msgID < 0 {
select {