Skip to content

Commit

Permalink
remove unused methodQueue from RCTImageStoreManager
Browse files Browse the repository at this point in the history
Summary:
Changelog: [iOS][Breaking] You cannot call methodQueue on RCTHTTPRequestHandler

the synthesize methodQueue API is confusing, it looks like an API only for use within native module implementation, but it's actually needed to create a selector that corresponds to the property declared in the RCTBridgeModule public protocol.
no one is using the methodQueue  on RCTHTTPRequestHandler, so let's get rid of the public access to it.

Differential Revision: D50525896
  • Loading branch information
philIip authored and facebook-github-bot committed Oct 21, 2023
1 parent c572643 commit beb2b23
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/react-native/Libraries/Image/RCTImageStoreManager.mm
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ @implementation RCTImageStoreManager {
NSUInteger _id;
}

@synthesize methodQueue = _methodQueue;

RCT_EXPORT_MODULE()

- (float)handlerPriority
Expand Down

0 comments on commit beb2b23

Please sign in to comment.