File tree Expand file tree Collapse file tree 3 files changed +21
-20
lines changed
Expand file tree Collapse file tree 3 files changed +21
-20
lines changed Original file line number Diff line number Diff line change 1+ name : Swift
2+
3+ on :
4+ push :
5+ branches : [ "master", "development" ]
6+ pull_request :
7+ branches : [ "master", "development" ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : macos-latest
13+
14+ steps :
15+ - uses : actions/checkout@v3
16+ - name : Build
17+ run : swift build -v
18+ - name : Run tests
19+ run : swift test -v
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import Foundation
2828/// A class that represents a waiting ack call.
2929///
3030/// **NOTE**: You should not store this beyond the life of the event handler.
31- public final class SocketAckEmitter : NSObject {
31+ public final class SocketAckEmitter : NSObject {
3232 private unowned let socket : SocketIOClient
3333 private let ackNum : Int
3434
@@ -101,7 +101,7 @@ public final class SocketAckEmitter : NSObject {
101101/// ...
102102/// }
103103/// ```
104- public final class OnAckCallback : NSObject {
104+ public final class OnAckCallback : NSObject {
105105 private let ackNumber : Int
106106 private let binary : Bool
107107 private let items : [ Any ]
You can’t perform that action at this time.
0 commit comments