mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 898044 - Remove unnecessary null check from GeckoApp.onSaveInstanceState. r=kats
This commit is contained in:
parent
c12b86e978
commit
c7a9d0baae
@ -489,9 +489,6 @@ abstract public class GeckoApp
|
||||
protected void onSaveInstanceState(Bundle outState) {
|
||||
super.onSaveInstanceState(outState);
|
||||
|
||||
if (outState == null)
|
||||
outState = new Bundle();
|
||||
|
||||
outState.putBoolean(SAVED_STATE_IN_BACKGROUND, isApplicationInBackground());
|
||||
outState.putString(SAVED_STATE_PRIVATE_SESSION, mPrivateBrowsingSession);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user