mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
remove redundant logging
This commit is contained in:
parent
a344f26d1b
commit
4eb77809fb
1 changed files with 0 additions and 11 deletions
|
@ -293,7 +293,6 @@ public class BoardActivity extends XWActivity
|
|||
@Override
|
||||
protected void onStart()
|
||||
{
|
||||
Utils.logf( "BoardActivity::onStart" );
|
||||
loadGame();
|
||||
super.onStart();
|
||||
}
|
||||
|
@ -301,7 +300,6 @@ public class BoardActivity extends XWActivity
|
|||
@Override
|
||||
protected void onPause()
|
||||
{
|
||||
Utils.logf( "BoardActivity::onPause()" );
|
||||
if ( null != m_jniThread ) {
|
||||
m_jniThread.setInBackground( true );
|
||||
}
|
||||
|
@ -312,7 +310,6 @@ public class BoardActivity extends XWActivity
|
|||
@Override
|
||||
protected void onResume()
|
||||
{
|
||||
Utils.logf( "BoardActivity::onResume()" );
|
||||
if ( null != m_jniThread ) {
|
||||
m_jniThread.setInBackground( false );
|
||||
}
|
||||
|
@ -320,17 +317,9 @@ public class BoardActivity extends XWActivity
|
|||
super.onResume();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStop()
|
||||
{
|
||||
Utils.logf( "BoardActivity::onStop()" );
|
||||
super.onStop();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onDestroy()
|
||||
{
|
||||
Utils.logf( "BoardActivity::onDestroy()" );
|
||||
waitCloseGame( true );
|
||||
super.onDestroy();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue