Skip to content

Commit

Permalink
remove unused methodQueue from RCTHTTPRequestHandler (facebook#41136)
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.

Reviewed By: javache, cipolleschi

Differential Revision: D50525900
  • Loading branch information
philIip authored and facebook-github-bot committed Oct 23, 2023
1 parent 1923a4e commit 3aacf8e
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ @implementation RCTHTTPRequestHandler {
}

@synthesize moduleRegistry = _moduleRegistry;
@synthesize methodQueue = _methodQueue;

RCT_EXPORT_MODULE()

Expand Down

0 comments on commit 3aacf8e

Please sign in to comment.