Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 274d091

Browse files
committed
cleanup + SR submodule update fixes #70
1 parent 223ac7a commit 274d091

12 files changed

+15
-14
lines changed

SocketIO.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIO.h
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

SocketIO.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIO.m
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

SocketIOJSONSerialization.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIOJSONSerialization.h
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

SocketIOJSONSerialization.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIOJSONSerialization.m
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

SocketIOPacket.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIOPacket.h
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

SocketIOPacket.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIOPacket.h
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

SocketIOTransport.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIOTransport.h
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

SocketIOTransportWebsocket.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIOTransportWebsocket.h
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

SocketIOTransportWebsocket.m

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIOTransportWebsocket.m
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
@@ -77,8 +77,9 @@ - (void) open
7777
[_webSocket open];
7878
}
7979

80-
- (void)dealloc {
81-
[_webSocket setDelegate:NULL];
80+
- (void) dealloc
81+
{
82+
[_webSocket setDelegate:nil];
8283
}
8384

8485
- (void) close

SocketIOTransportXHR.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// SocketIOTransportXHR.h
3-
// v0.3.0 ARC
3+
// v0.3.2 ARC
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa

0 commit comments

Comments
 (0)