Skip to content

Commit

Permalink
Revert "Remove overriden createJSModules (aksonov#145)"
Browse files Browse the repository at this point in the history
This reverts commit bc4875c.

This change should take effect around RN 0.47.0. We're not there yet.
  • Loading branch information
cbrevik committed Jul 13, 2017
1 parent 8e4b5ad commit eac5833
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ public List<NativeModule> createNativeModules(
return modules;
}

@Override
public List<Class<? extends JavaScriptModule>> createJSModules() {
return Collections.emptyList();
}

@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
return Arrays.<ViewManager>asList();
Expand Down

0 comments on commit eac5833

Please sign in to comment.