Skip to content

Commit

Permalink
Fix failed when compile with java 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
race604 committed Oct 17, 2015
1 parent f5638a6 commit 7feae3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public List<Class<? extends JavaScriptModule>> createJSModules() {

@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
List<ViewManager> result = new ArrayList<>();
List<ViewManager> result = new ArrayList<ViewManager>();
result.add(new ReactWebViewManager());
result.add(new ReactSwipeRefreshLayoutManager());

Expand Down

0 comments on commit 7feae3e

Please sign in to comment.