Remove unused queue ivar from RCTWebSocketManager

Reviewed By: javache

Differential Revision: D4296309

fbshipit-source-id: feee004e24abdb4b3626c5304f662ec3d71118b5
This commit is contained in:
Adam Ernst 2016-12-08 07:28:09 -08:00 committed by Facebook Github Bot
parent ac489858f8
commit 28e2f64d07
1 changed files with 0 additions and 2 deletions

View File

@ -101,7 +101,6 @@
@interface RCTWebSocketManager()
@property (nonatomic, strong) NSMutableDictionary *sockets;
@property (nonatomic, strong) dispatch_queue_t queue;
@end
@ -142,7 +141,6 @@
{
if ((self = [super init])) {
_sockets = [NSMutableDictionary new];
_queue = dispatch_queue_create("com.facebook.react.WebSocketManager", DISPATCH_QUEUE_SERIAL);
}
return self;
}