mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +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
|
@Override
|
||||||
protected void onStart()
|
protected void onStart()
|
||||||
{
|
{
|
||||||
Utils.logf( "BoardActivity::onStart" );
|
|
||||||
loadGame();
|
loadGame();
|
||||||
super.onStart();
|
super.onStart();
|
||||||
}
|
}
|
||||||
|
@ -301,7 +300,6 @@ public class BoardActivity extends XWActivity
|
||||||
@Override
|
@Override
|
||||||
protected void onPause()
|
protected void onPause()
|
||||||
{
|
{
|
||||||
Utils.logf( "BoardActivity::onPause()" );
|
|
||||||
if ( null != m_jniThread ) {
|
if ( null != m_jniThread ) {
|
||||||
m_jniThread.setInBackground( true );
|
m_jniThread.setInBackground( true );
|
||||||
}
|
}
|
||||||
|
@ -312,7 +310,6 @@ public class BoardActivity extends XWActivity
|
||||||
@Override
|
@Override
|
||||||
protected void onResume()
|
protected void onResume()
|
||||||
{
|
{
|
||||||
Utils.logf( "BoardActivity::onResume()" );
|
|
||||||
if ( null != m_jniThread ) {
|
if ( null != m_jniThread ) {
|
||||||
m_jniThread.setInBackground( false );
|
m_jniThread.setInBackground( false );
|
||||||
}
|
}
|
||||||
|
@ -320,17 +317,9 @@ public class BoardActivity extends XWActivity
|
||||||
super.onResume();
|
super.onResume();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onStop()
|
|
||||||
{
|
|
||||||
Utils.logf( "BoardActivity::onStop()" );
|
|
||||||
super.onStop();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onDestroy()
|
protected void onDestroy()
|
||||||
{
|
{
|
||||||
Utils.logf( "BoardActivity::onDestroy()" );
|
|
||||||
waitCloseGame( true );
|
waitCloseGame( true );
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue