Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Remove an unnecessary method override from GameListActivity…
….java. We don't actually do anything different from the default behavior of this method, so we don't need to explicitly define it.

This method is intended to be used for modifying the contents of a menu before displaying it. We don't really have a need for this, since it doesn't need to be modified.
  • Loading branch information
lioncash committed Oct 1, 2013
1 parent cd99e5e commit cb9ff3d
Showing 1 changed file with 0 additions and 7 deletions.
Expand Up @@ -191,13 +191,6 @@ public void onConfigurationChanged(Configuration newConfig)
mDrawerToggle.onConfigurationChanged(newConfig);
}

/* Called whenever we call invalidateOptionsMenu() */
@Override
public boolean onPrepareOptionsMenu(Menu menu)
{
return super.onPrepareOptionsMenu(menu);
}

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

0 comments on commit cb9ff3d

Please sign in to comment.