mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
committed by
Facebook GitHub Bot
parent
faae720e41
commit
b77f265afe
+1
-1
@@ -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() {
|
||||
|
||||
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user