Skip to content

Commit

Permalink
Remove overriden createJSModules
Browse files Browse the repository at this point in the history
Since of recently in master the unused createJSModules has been removed and ReactPackage's no longer contain the definition of createJSModules. There for it must be removed in order to not yield a compile error. This is breaking change.

facebook/react-native@ce6fb33
  • Loading branch information
ptomasroos authored Jun 20, 2017
1 parent 4a93106 commit dff9f47
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,6 @@ public List<NativeModule> createNativeModules(ReactApplicationContext reactAppli
return nativeModules;
}

@Override
public List<Class<? extends JavaScriptModule>> createJSModules() {
return new ArrayList<>();
}

@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactApplicationContext) {
return new ArrayList<>();
Expand Down

0 comments on commit dff9f47

Please sign in to comment.