mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-29 10:26:36 +01:00
cleanup after review of recent changes: remove logging etc. didn't
mean to check in.
This commit is contained in:
parent
0a2255a8fe
commit
656110841f
2 changed files with 1 additions and 5 deletions
|
@ -47,8 +47,6 @@ public class NetLaunchInfo {
|
|||
bundle.putString( ROOM, room );
|
||||
bundle.putInt( NPLAYERS, nPlayers );
|
||||
bundle.putBoolean( VALID, m_valid );
|
||||
Utils.logf( "bundling NetLaunchInfo: %d, %s, %d, %b",
|
||||
lang, room, nPlayers, m_valid );
|
||||
}
|
||||
|
||||
public NetLaunchInfo( Bundle bundle )
|
||||
|
@ -57,8 +55,6 @@ public class NetLaunchInfo {
|
|||
room = bundle.getString( ROOM );
|
||||
nPlayers = bundle.getInt( NPLAYERS );
|
||||
m_valid = bundle.getBoolean( VALID );
|
||||
Utils.logf( "unbundled NetLaunchInfo: %d, %s, %d, %b",
|
||||
lang, room, nPlayers, m_valid );
|
||||
}
|
||||
|
||||
public static Uri makeLaunchUri( Context context, String room,
|
||||
|
|
|
@ -134,7 +134,7 @@ public class XWListActivity extends ListActivity
|
|||
|
||||
protected void showConfirmThen( int msg, int action )
|
||||
{
|
||||
m_delegate.showConfirmThen( getString(msg), action );
|
||||
showConfirmThen( getString(msg), action );
|
||||
}
|
||||
|
||||
protected void doSyncMenuitem()
|
||||
|
|
Loading…
Reference in a new issue