get rid of some logging

This commit is contained in:
Eric House 2011-07-18 18:08:56 -07:00
parent 47da43a581
commit 0548f6be66
3 changed files with 1 additions and 4 deletions

View file

@ -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 )
{

View file

@ -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 );

View file

@ -526,7 +526,6 @@ public class JNIThread extends Thread {
checkButtons();
}
}
Utils.logf( "run exiting" );
} // run
public void handle( JNICmd cmd, boolean isUI, Object... args )