From cf8a46f24d678cdb30cc4754033cb53b1ce54a50 Mon Sep 17 00:00:00 2001 From: Todd Volkert Date: Wed, 21 Jun 2017 10:03:04 -0700 Subject: [PATCH] Remove FlutterActivity#onFlutterReady() (flutter/engine#3806) Fixes https://github.com/flutter/flutter/issues/10571 --- .../android/io/flutter/app/FlutterActivity.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/engine/src/flutter/shell/platform/android/io/flutter/app/FlutterActivity.java b/engine/src/flutter/shell/platform/android/io/flutter/app/FlutterActivity.java index c3772e8677..b8e9d69e46 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/app/FlutterActivity.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/app/FlutterActivity.java @@ -35,15 +35,6 @@ public class FlutterActivity extends Activity implements FlutterView.Provider, P 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}. @@ -75,7 +66,6 @@ public class FlutterActivity extends Activity implements FlutterView.Provider, P protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); eventDelegate.onCreate(savedInstanceState); - onFlutterReady(); } @Override