Reduce visibility in React Context (#37695)

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

In this diff I'm reducing visibility of RCTDeviceEventEmitter interface in ReactContext.

This is an internal interface that has no usages externally (neither at Meta or github source)

changelog: [internal] internal

Reviewed By: cortinico, luluwu2032

Differential Revision: D46241623

fbshipit-source-id: 297256b7394768c54b24125ad91f7b3fabbd42d0
This commit is contained in:
David Vacca
2023-06-07 11:14:49 -07:00
committed by Facebook GitHub Bot
parent c6d895bec9
commit 3edd5138d2
@@ -16,7 +16,7 @@ public class MessageQueueThreadSpec {
// The Thread constructor interprets zero the same as not specifying a stack size
public static final long DEFAULT_STACK_SIZE_BYTES = 0;
protected static enum ThreadType {
protected enum ThreadType {
MAIN_UI,
NEW_BACKGROUND,
}