Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Remove accidental fragment tag in GameListActivity (it was …
…useless, since it's an empty string)
  • Loading branch information
lioncash committed Nov 16, 2013
1 parent 2025f00 commit ee32c8b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -158,7 +158,7 @@ public void SwitchPage(int toPage)
mCurFragmentNum = 0;
final GameListFragment gameList = new GameListFragment();
FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.replace(R.id.content_frame, gameList, "");
ft.replace(R.id.content_frame, gameList);
ft.commit();
invalidateOptionsMenu();
}
Expand Down

0 comments on commit ee32c8b

Please sign in to comment.