mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-16 15:41:16 +01:00
get rid of onRestart -- onStart is always called right after.
This commit is contained in:
parent
8b5f4a84f2
commit
5291307c11
2 changed files with 1 additions and 15 deletions
|
@ -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()
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue