Remove unused queue ivar from RCTWebSocketManager
Reviewed By: javache Differential Revision: D4296309 fbshipit-source-id: feee004e24abdb4b3626c5304f662ec3d71118b5
This commit is contained in:
parent
ac489858f8
commit
28e2f64d07
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue