File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
packages/react-native/ReactAndroid
src/main/java/com/facebook/react/bridge Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -1457,12 +1457,6 @@ public final class com/facebook/react/bridge/ReadableType : java/lang/Enum {
1457
1457
public static fun values ()[Lcom/facebook/react/bridge/ReadableType;
1458
1458
}
1459
1459
1460
- public final class com/facebook/react/bridge/RetryableMountingLayerException : java/lang/RuntimeException {
1461
- public fun <init> (Ljava/lang/String;)V
1462
- public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
1463
- public fun <init> (Ljava/lang/Throwable;)V
1464
- }
1465
-
1466
1460
public final class com/facebook/react/bridge/RuntimeExecutor : com/facebook/jni/HybridClassBase {
1467
1461
}
1468
1462
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ package com.facebook.react.bridge
11
11
* ViewCommands can throw this Exception. If this is caught during the execution of a ViewCommand
12
12
* mounting instruction, it indicates that the mount item can be safely retried.
13
13
*/
14
- public class RetryableMountingLayerException : RuntimeException {
14
+ internal class RetryableMountingLayerException : RuntimeException {
15
15
16
- public constructor (msg: String ) : super (msg)
16
+ constructor (msg: String ) : super (msg)
17
17
18
- public constructor (e: Throwable ) : super (e)
18
+ constructor (e: Throwable ) : super (e)
19
19
20
- public constructor (msg: String , e: Throwable ? ) : super (msg, e)
20
+ constructor (msg: String , e: Throwable ? ) : super (msg, e)
21
21
}
You can’t perform that action at this time.
0 commit comments