Update comment in ReactInstance to properly descrube package visibility (#38590)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/38590

Update comment in ReactInstance to properly descrube package visibility

changelog: [internal] internal

Reviewed By: christophpurrer, cortinico

Differential Revision: D47483651

fbshipit-source-id: 1743bc76f515eb1cf2021e422b08f62f316b8ef9
This commit is contained in:
David Vacca
2023-07-30 11:54:13 -07:00
committed by Facebook GitHub Bot
parent 0cac88fa65
commit ea5bf30a1b
@@ -476,12 +476,12 @@ final class ReactInstance {
/**
* @return The {@link EventDispatcher} used by {@link FabricUIManager} to emit UI events to JS.
*/
/* protected */ EventDispatcher getEventDispatcher() {
/* package */ EventDispatcher getEventDispatcher() {
return mFabricUIManager.getEventDispatcher();
}
/** @return The {@link FabricUIManager} if it's been initialized. */
/* protected */ FabricUIManager getUIManager() {
/* package */ FabricUIManager getUIManager() {
return mFabricUIManager;
}