File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
packages/react-native/ReactAndroid
src/main/java/com/facebook/react/bridge Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1056,7 +1056,7 @@ public class com/facebook/react/bridge/ProxyJavaScriptExecutor$Factory : com/fac
10561056public fun stopSamplingProfiler (Ljava/lang/String;)V
10571057}
10581058
1059- public class com/facebook/react/bridge/ReactApplicationContext : com/facebook/react/bridge/ReactContext {
1059+ public abstract class com/facebook/react/bridge/ReactApplicationContext : com/facebook/react/bridge/ReactContext {
10601060public fun <init> (Landroid/content/Context;)V
10611061}
10621062
@@ -1068,7 +1068,7 @@ public class com/facebook/react/bridge/ReactBridge {
10681068public static fun staticInit ()V
10691069}
10701070
1071- public class com/facebook/react/bridge/ReactContext : android/content/ContextWrapper {
1071+ public abstract class com/facebook/react/bridge/ReactContext : android/content/ContextWrapper {
10721072protected field mInteropModuleRegistry Lcom/facebook/react/bridge/interop/InteropModuleRegistry;
10731073public fun <init> (Landroid/content/Context;)V
10741074public fun addActivityEventListener (Lcom/facebook/react/bridge/ActivityEventListener;)V
Original file line number Diff line number Diff line change 1313 * A context wrapper that always wraps Android Application {@link Context} and {@link
1414 * CatalystInstance} by extending {@link ReactContext}
1515 */
16- public class ReactApplicationContext extends ReactContext {
16+ public abstract class ReactApplicationContext extends ReactContext {
1717 // We want to wrap ApplicationContext, since there is no easy way to verify that application
1818 // context is passed as a param, we use {@link Context#getApplicationContext} to ensure that
1919 // the context we're wrapping is in fact an application context.
Original file line number Diff line number Diff line change 3737 * Abstract ContextWrapper for Android application or activity {@link Context} and {@link
3838 * CatalystInstance}
3939 */
40- public class ReactContext extends ContextWrapper {
40+ public abstract class ReactContext extends ContextWrapper {
4141
4242 @ DoNotStrip
4343 public interface RCTDeviceEventEmitter extends JavaScriptModule {
You can’t perform that action at this time.
0 commit comments