mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34: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();
|
super.onStart();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onRestart()
|
|
||||||
{
|
|
||||||
Utils.logf( "BoardActivity::onRestart" );
|
|
||||||
super.onRestart();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onPause()
|
protected void onPause()
|
||||||
{
|
{
|
||||||
|
|
|
@ -45,19 +45,12 @@ public class XWListActivity extends ListActivity {
|
||||||
DispatchNotify.SetRunning( this );
|
DispatchNotify.SetRunning( this );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onRestart()
|
|
||||||
{
|
|
||||||
super.onRestart();
|
|
||||||
DispatchNotify.SetRunning( this );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onStop()
|
protected void onStop()
|
||||||
{
|
{
|
||||||
Utils.logf( "XWListActivity::onStop" );
|
Utils.logf( "XWListActivity::onStop" );
|
||||||
super.onStop();
|
|
||||||
DispatchNotify.ClearRunning( this );
|
DispatchNotify.ClearRunning( this );
|
||||||
|
super.onStop();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue