Skip to content

Commit

Permalink
Reduce visibility of JavaMethodWrapper and JavaModuleWrapper to packa…
Browse files Browse the repository at this point in the history
…ge only (#38591)

Summary:
Pull Request resolved: #38591

Reduce visibility of JavaMethodWrapper and JavaModuleWrapper to package only

changelog: [internal] internal

Reviewed By: christophpurrer, cortinico

Differential Revision: D47449525

fbshipit-source-id: a1a573c31fbe3402f32d05005848fc113419a00a
  • Loading branch information
mdvacca authored and facebook-github-bot committed Jul 29, 2023
1 parent faae720 commit b77f265
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
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() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* read and means fewer JNI calls.
*/
@DoNotStrip
public class JavaModuleWrapper {
class JavaModuleWrapper {
@DoNotStrip
public class MethodDescriptor {
@DoNotStrip Method method;
Expand Down

0 comments on commit b77f265

Please sign in to comment.