We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe02b8e commit ca67625Copy full SHA for ca67625
Source/SocketClientSpec.swift
@@ -22,8 +22,6 @@
22
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
// THE SOFTWARE.
24
25
-import Foundation
26
-
27
protocol SocketClientSpec: class {
28
var nsp: String { get set }
29
var waitingData: [SocketPacket] { get set }
Source/SocketParsable.swift
@@ -22,7 +22,7 @@
import Foundation
-protocol SocketParsable: class, SocketClientSpec {
+protocol SocketParsable: SocketClientSpec {
func parseBinaryData(data: NSData)
func parseSocketMessage(message: String)
}
0 commit comments