Skip to content

(fix) Remove @Override statements. No longer needed due to breaking c… #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void addIdentityProvider(Strategies strategy, IdentityProvider identityPr
* @param reactContext react application context that can be used to create modules
* @return list of native modules to register with the newly created catalyst instance
*/
@Override

public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
List<NativeModule> modules = new ArrayList<>();

Expand All @@ -143,7 +143,6 @@ public List<NativeModule> createNativeModules(ReactApplicationContext reactConte
* NOT USED. This is a required override
* @see ReactPackage
*/
@Override
public List<Class<? extends JavaScriptModule>> createJSModules() {
return new ArrayList<>();
}
Expand All @@ -152,7 +151,6 @@ public List<Class<? extends JavaScriptModule>> createJSModules() {
* NOT USED. This is a required override
* @see ReactPackage
*/
@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
return new ArrayList<>();
}
Expand Down