File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed
packages/react-native/ReactAndroid
src/main/java/com/facebook/react/common Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -1669,12 +1669,6 @@ public final class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec$C
1669
1669
public final fun createDefault ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
1670
1670
}
1671
1671
1672
- public final class com/facebook/react/common/ClassFinder {
1673
- public static final field INSTANCE Lcom/facebook/react/common/ClassFinder;
1674
- public static final fun canLoadClassesFromAnnotationProcessors ()Z
1675
- public static final fun findClass (Ljava/lang/String;)Ljava/lang/Class;
1676
- }
1677
-
1678
1672
public final class com/facebook/react/common/ClearableSynchronizedPool : androidx/core/util/Pools$Pool {
1679
1673
public fun <init> (I)V
1680
1674
public fun acquire ()Ljava/lang/Object;
Original file line number Diff line number Diff line change @@ -10,18 +10,17 @@ package com.facebook.react.common
10
10
import com.facebook.react.BuildConfig
11
11
import kotlin.jvm.Throws
12
12
13
- public object ClassFinder {
13
+ internal object ClassFinder {
14
14
15
15
/* *
16
16
* We don't run the ModuleInfoProvider Annotation Processor in OSS, so there is no need to attempt
17
17
* to call Class.forName() as we know for sure that those classes won't be there.
18
18
*/
19
- @JvmStatic
20
- public fun canLoadClassesFromAnnotationProcessors (): Boolean = BuildConfig .IS_INTERNAL_BUILD
19
+ @JvmStatic fun canLoadClassesFromAnnotationProcessors (): Boolean = BuildConfig .IS_INTERNAL_BUILD
21
20
22
21
@JvmStatic
23
22
@Throws(ClassNotFoundException ::class )
24
- public fun findClass (className : String ): Class <* >? {
23
+ fun findClass (className : String ): Class <* >? {
25
24
if (canLoadClassesFromAnnotationProcessors().not ()) {
26
25
return null
27
26
}
You can’t perform that action at this time.
0 commit comments