mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +01:00
get rid of some logging
This commit is contained in:
parent
47da43a581
commit
0548f6be66
3 changed files with 1 additions and 4 deletions
|
@ -816,12 +816,12 @@ public class BoardActivity extends XWActivity
|
|||
|
||||
public void clearTimer( int why )
|
||||
{
|
||||
Utils.logf( "clearTimer called" );
|
||||
if ( null != m_timers[why] ) {
|
||||
m_handler.removeCallbacks( m_timers[why] );
|
||||
m_timers[why] = null;
|
||||
}
|
||||
}
|
||||
|
||||
// This is supposed to be called from the jni thread
|
||||
public int userPickTile( int playerNum, String[] texts )
|
||||
{
|
||||
|
|
|
@ -234,8 +234,6 @@ public class DBUtils {
|
|||
}
|
||||
values.put( DBHelper.SERVERROLE, summary.serverRole.ordinal() );
|
||||
|
||||
Utils.logf( "saveSummary: nMoves=%d", summary.nMoves );
|
||||
|
||||
String selection = DBHelper.FILE_NAME + "=\"" + path + "\"";
|
||||
long result = db.update( DBHelper.TABLE_NAME_SUM,
|
||||
values, selection, null );
|
||||
|
|
|
@ -526,7 +526,6 @@ public class JNIThread extends Thread {
|
|||
checkButtons();
|
||||
}
|
||||
}
|
||||
Utils.logf( "run exiting" );
|
||||
} // run
|
||||
|
||||
public void handle( JNICmd cmd, boolean isUI, Object... args )
|
||||
|
|
Loading…
Reference in a new issue