Skip to content

Commit 4c033f8

Browse files
committed
make final class
1 parent b0cf8d2 commit 4c033f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SocketIOClientSwift/SocketAckEmitter.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import Foundation
2626

2727

28-
public class SocketAckEmitter: NSObject {
28+
public final class SocketAckEmitter: NSObject {
2929
unowned let socket: SocketIOClient
3030
let ackNum: Int
3131

@@ -39,6 +39,6 @@ public class SocketAckEmitter: NSObject {
3939
}
4040
}
4141

42-
public func <-(lhs: SocketAckEmitter?, rhs: [AnyObject]) {
43-
lhs?.with(rhs)
42+
public func <-(ack: SocketAckEmitter?, items: [AnyObject]) {
43+
ack?.with(items)
4444
}

0 commit comments

Comments
 (0)