Rename variable

This commit is contained in:
Erik 2016-08-11 21:26:01 -04:00
parent 14b4df3836
commit 437c983533
No known key found for this signature in database
GPG Key ID: 4930B7C5FBC1A69D

View File

@ -435,9 +435,9 @@ public final class SocketIOClient : NSObject, SocketEngineClient, SocketParsable
currentReconnectAttempt += 1
connect()
let dispatchAfter = dispatch_time(DISPATCH_TIME_NOW, Int64(UInt64(reconnectWait) * NSEC_PER_SEC))
let time = dispatch_time(DISPATCH_TIME_NOW, Int64(UInt64(reconnectWait) * NSEC_PER_SEC))
dispatch_after(dispatchAfter, dispatch_get_main_queue(), _tryReconnect)
dispatch_after(time, dispatch_get_main_queue(), _tryReconnect)
}
}
@ -456,6 +456,6 @@ extension SocketIOClient {
}
func emitTest(event: String, _ data: AnyObject...) {
self._emit([event] + data)
_emit([event] + data)
}
}