diff --git a/packages/react-native/Libraries/Blob/RCTBlobManager.mm b/packages/react-native/Libraries/Blob/RCTBlobManager.mm index 785a63629917..c7035d8a0ea1 100755 --- a/packages/react-native/Libraries/Blob/RCTBlobManager.mm +++ b/packages/react-native/Libraries/Blob/RCTBlobManager.mm @@ -42,7 +42,6 @@ @implementation RCTBlobManager { std::mutex _blobsMutex; NSOperationQueue *_queue; - dispatch_queue_t _processingQueue; } RCT_EXPORT_MODULE(BlobModule) diff --git a/packages/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm b/packages/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm index b45410f9c0c2..7d62c17f9cb5 100644 --- a/packages/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm +++ b/packages/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm @@ -80,8 +80,6 @@ @implementation RCTInterpolationAnimatedNode { RCTInterpolationOutputType _outputType; id _Nullable _outputvalue; NSString *_Nullable _outputPattern; - - NSArray *_matches; } - (instancetype)initWithTag:(NSNumber *)tag config:(NSDictionary *)config diff --git a/packages/react-native/Libraries/Network/RCTNetworking.mm b/packages/react-native/Libraries/Network/RCTNetworking.mm index e3baba2f529d..1b52a960f633 100644 --- a/packages/react-native/Libraries/Network/RCTNetworking.mm +++ b/packages/react-native/Libraries/Network/RCTNetworking.mm @@ -162,7 +162,6 @@ @implementation RCTNetworking { NSMutableArray> *_requestHandlers; NSMutableArray> *_responseHandlers; NSMutableArray> *_textResponseHandlers; - dispatch_queue_t _requestQueue; } @synthesize methodQueue = _methodQueue;