Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove an early return to suppress a deprecated API warning for `UIMe…
…nuController` (#42277) Summary: `UIMenuController` is deprecated as of iOS 16. e08a197 migrated a usage into an `available` check. However, it does not properly fall back to the deprecated API in the "else" block of the availability check, instead it uses an early return. It seems this means Xcode still sees the API as used, and spits out a deprecated warning. Let's just refactor the code so we don't have that anymore. ## Changelog: [IOS] [FIXED] - Remove an early return to suppress a deprecated API warning for `UIMenuController` Pull Request resolved: #42277 Test Plan: CI should pass. Reviewed By: cipolleschi Differential Revision: D52785488 Pulled By: sammy-SC fbshipit-source-id: 0b47e8aa8d7c94728e3d68332fbb8f97f8ded34e
- Loading branch information