Skip to content

Commit

Permalink
Remove FlutterActivity#onFlutterReady() (flutter#3806)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvolkert authored Jun 21, 2017
1 parent b8c47e9 commit fa2726c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions shell/platform/android/io/flutter/app/FlutterActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,6 @@ public FlutterView getFlutterView() {
return viewProvider.getFlutterView();
}

/**
* Hook for subclasses to customize their startup behavior.
*
* @deprecated Just override {@link #onCreate(Bundle)} instead, and add your
* logic after calling {@code super.onCreate()}.
*/
@Deprecated
protected void onFlutterReady() {}

/**
* Hook for subclasses to customize the creation of the
* {@code FlutterView}.
Expand Down Expand Up @@ -75,7 +66,6 @@ public final Registrar registrarFor(String pluginKey) {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
eventDelegate.onCreate(savedInstanceState);
onFlutterReady();
}

@Override
Expand Down

0 comments on commit fa2726c

Please sign in to comment.