Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit f59f7da

Browse files
Remove FlutterView.onResume (#2768)
It's empty and is easily confused with onPostResume
1 parent 471beb0 commit f59f7da

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

sky/shell/platform/android/io/flutter/view/FlutterView.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,6 @@ public void onPause() {
177177
mSkyEngine.onAppLifecycleStateChanged(AppLifecycleState.PAUSED);
178178
}
179179

180-
public void onResume() {
181-
}
182-
183180
public void onPostResume() {
184181
mSkyEngine.onAppLifecycleStateChanged(AppLifecycleState.RESUMED);
185182
}

sky/shell/platform/android/org/domokit/sky/shell/SkyActivity.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,6 @@ protected void onPause() {
105105
}
106106
}
107107

108-
@Override
109-
protected void onResume() {
110-
super.onResume();
111-
if (mView != null) {
112-
mView.onResume();
113-
}
114-
}
115-
116108
@Override
117109
protected void onPostResume() {
118110
super.onPostResume();

0 commit comments

Comments
 (0)