Reduce visibility of JavaMethodWrapper and JavaModuleWrapper to package only (#38591)

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

Reduce visibility of JavaMethodWrapper and JavaModuleWrapper to package only

changelog: [internal] internal

Reviewed By: christophpurrer, cortinico

Differential Revision: D47449525

fbshipit-source-id: a1a573c31fbe3402f32d05005848fc113419a00a
This commit is contained in:
David Vacca
2023-07-29 11:20:24 -07:00
committed by Facebook GitHub Bot
parent faae720e41
commit b77f265afe
2 changed files with 2 additions and 2 deletions
@@ -18,7 +18,7 @@ import com.facebook.systrace.SystraceMessage;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class JavaMethodWrapper implements NativeModule.NativeMethod {
class JavaMethodWrapper implements NativeModule.NativeMethod {
private abstract static class ArgumentExtractor<T> {
public int getJSArgumentsNeeded() {
@@ -32,7 +32,7 @@ import java.util.Set;
* read and means fewer JNI calls.
*/
@DoNotStrip
public class JavaModuleWrapper {
class JavaModuleWrapper {
@DoNotStrip
public class MethodDescriptor {
@DoNotStrip Method method;