get rid of onRestart -- onStart is always called right after.

This commit is contained in:
Andy2 2011-02-24 22:20:10 -08:00
parent 8b5f4a84f2
commit 5291307c11
2 changed files with 1 additions and 15 deletions

View file

@ -273,13 +273,6 @@ public class BoardActivity extends XWActivity {
super.onStart();
}
@Override
protected void onRestart()
{
Utils.logf( "BoardActivity::onRestart" );
super.onRestart();
}
@Override
protected void onPause()
{

View file

@ -45,19 +45,12 @@ public class XWListActivity extends ListActivity {
DispatchNotify.SetRunning( this );
}
@Override
protected void onRestart()
{
super.onRestart();
DispatchNotify.SetRunning( this );
}
@Override
protected void onStop()
{
Utils.logf( "XWListActivity::onStop" );
super.onStop();
DispatchNotify.ClearRunning( this );
super.onStop();
}
@Override