Skip to content

Commit

Permalink
Remove FlutterView.onResume (flutter#2768)
Browse files Browse the repository at this point in the history
It's empty and is easily confused with onPostResume
  • Loading branch information
jason-simmons authored Jun 20, 2016
1 parent 471beb0 commit f59f7da
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
3 changes: 0 additions & 3 deletions sky/shell/platform/android/io/flutter/view/FlutterView.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,6 @@ public void onPause() {
mSkyEngine.onAppLifecycleStateChanged(AppLifecycleState.PAUSED);
}

public void onResume() {
}

public void onPostResume() {
mSkyEngine.onAppLifecycleStateChanged(AppLifecycleState.RESUMED);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,6 @@ protected void onPause() {
}
}

@Override
protected void onResume() {
super.onResume();
if (mView != null) {
mView.onResume();
}
}

@Override
protected void onPostResume() {
super.onPostResume();
Expand Down

0 comments on commit f59f7da

Please sign in to comment.