-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused (Android) TextLayoutManager getter (#48208)
Summary: Pull Request resolved: #48208 [Changelog] [Internal] - Remove unused (Android) TextLayoutManager getter This getter ``` void* getNativeTextLayoutManager() const; ``` is not used on Android and different in signature to the iOS one: ``` std::shared_ptr<void> getNativeTextLayoutManager() const; ``` Deleting it for now to make future code sharing between various platforms easier. This change removes further the by now discouraged pattern of: ``` using SharedTextLayoutManager = std::shared_ptr<const TextLayoutManager>; ``` and changes callers to use ``` std::shared_ptr<const TextLayoutManager>; ``` directly. Reviewed By: javache Differential Revision: D67059514 fbshipit-source-id: b94dc7f664083c5c62c4ba7defca480549ca9dc1
- Loading branch information
1 parent
a80baac
commit 07d723c
Showing
9 changed files
with
18 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters