Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesSmartCell committed Oct 8, 2023
1 parent ea95f8f commit 9a75aac
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/com/alphawallet/app/ui/HomeActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ protected void onPause()
@Override
public void onSaveInstanceState(@NonNull Bundle savedInstanceState)
{
super.onSaveInstanceState(new Bundle());
super.onSaveInstanceState(savedInstanceState);
savedInstanceState.putInt(STORED_PAGE, viewPager.getCurrentItem());
if (getSelectedItem() != null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,6 @@ public void onPause()
}
}

@Override
public void onSaveInstanceState(Bundle bundle)
{
super.onSaveInstanceState(bundle);
}

@Override
public boolean onCreateOptionsMenu(@NonNull Menu menu)
{
Expand Down

0 comments on commit 9a75aac

Please sign in to comment.