-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove unused methodQueue from RCTHTTPRequestHandler #41136
Conversation
This pull request was exported from Phabricator. Differential Revision: D50525900 |
Base commit: 1923a4e |
c572643
to
3aacf8e
Compare
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
This pull request was exported from Phabricator. Differential Revision: D50525900 |
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
3aacf8e
to
ab89c92
Compare
This pull request was exported from Phabricator. Differential Revision: D50525900 |
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
ab89c92
to
01c8861
Compare
This pull request was exported from Phabricator. Differential Revision: D50525900 |
This pull request was successfully merged by @philIip in 7503dbd. When will my fix make it into a release? | Upcoming Releases |
Summary: Pull Request resolved: facebook#41136 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 fbshipit-source-id: f83738491d0eadc71a6dc3194ee16fe7c8748263
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 theRCTBridgeModule
public protocol.no one is using the
methodQueue
onRCTHTTPRequestHandler
, so let's get rid of the public access to it.Differential Revision: D50525900