Skip to content

Commit

Permalink
Merge pull request #14 from kuritatu18/match-rxswift-version-with-ribs
Browse files Browse the repository at this point in the history
Match the RxSwift version to the RIBs
  • Loading branch information
srea committed May 14, 2020
2 parents c3e7dd7 + e7898fe commit 324979b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "ReactiveX/RxSwift" "5.1.0"
github "ReactiveX/RxSwift" ~> 5.1
github "uber/RIBs" ~> 0.9
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "ReactiveX/RxSwift" "5.1.0"
github "ReactiveX/RxSwift" "5.1.1"
github "uber/RIBs" "v0.9.2"
6 changes: 3 additions & 3 deletions RIBsTreeViewerClient/Sources/RIBsTreeViewer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ extension RIBsTreeViewerImpl: WebSocketClientDelegate {
func onConnected(client: WebSocketClient) {
}

func onDisconnedted(client: WebSocketClient) {
func onDisconnected(client: WebSocketClient) {
}

func onMessage(client: WebSocketClient, text: String) {
Expand All @@ -152,7 +152,7 @@ protocol WebSocketClientDelegate: class {
@available(iOS 13.0, *)
func onConnected(client: WebSocketClient)
@available(iOS 13.0, *)
func onDisconnedted(client: WebSocketClient)
func onDisconnected(client: WebSocketClient)
@available(iOS 13.0, *)
func onMessage(client: WebSocketClient, text: String)
@available(iOS 13.0, *)
Expand Down Expand Up @@ -236,6 +236,6 @@ extension WebSocketClient: URLSessionWebSocketDelegate {
}

func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?) {
self.delegate?.onDisconnedted(client: self)
self.delegate?.onDisconnected(client: self)
}
}

0 comments on commit 324979b

Please sign in to comment.