Remove view managers from @ReactModuleList

Summary: The annotation ReactModuleList that was processed by ReactModuleSpecProcessor.java does not use ViewManagers. Removing this method from the annotation so that there is no confusion on how view managers are added to individual packages.

Reviewed By: achen1

Differential Revision: D9115363

fbshipit-source-id: 43d12e09b0e9b8e1732533f9a4456327778a0eaf
This commit is contained in:
Ram N 2018-10-29 12:20:22 -07:00 committed by Facebook Github Bot
parent a70625abd7
commit c91a2b36d7
1 changed files with 0 additions and 6 deletions

View File

@ -26,10 +26,4 @@ public @interface ReactModuleList {
* @return List of Native modules in the package.
*/
Class<? extends NativeModule>[] nativeModules();
/**
* The View Managers in this list should be annotated with {@link ReactModule}.
* @return List of view manager in the package.
*/
Class<? extends NativeModule>[] viewManagers() default {};
}