cleanup after review of recent changes: remove logging etc. didn't

mean to check in.
This commit is contained in:
Andy2 2011-08-25 18:48:41 -07:00
parent 0a2255a8fe
commit 656110841f
2 changed files with 1 additions and 5 deletions

View file

@ -47,8 +47,6 @@ public class NetLaunchInfo {
bundle.putString( ROOM, room ); bundle.putString( ROOM, room );
bundle.putInt( NPLAYERS, nPlayers ); bundle.putInt( NPLAYERS, nPlayers );
bundle.putBoolean( VALID, m_valid ); bundle.putBoolean( VALID, m_valid );
Utils.logf( "bundling NetLaunchInfo: %d, %s, %d, %b",
lang, room, nPlayers, m_valid );
} }
public NetLaunchInfo( Bundle bundle ) public NetLaunchInfo( Bundle bundle )
@ -57,8 +55,6 @@ public class NetLaunchInfo {
room = bundle.getString( ROOM ); room = bundle.getString( ROOM );
nPlayers = bundle.getInt( NPLAYERS ); nPlayers = bundle.getInt( NPLAYERS );
m_valid = bundle.getBoolean( VALID ); 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, public static Uri makeLaunchUri( Context context, String room,

View file

@ -134,7 +134,7 @@ public class XWListActivity extends ListActivity
protected void showConfirmThen( int msg, int action ) protected void showConfirmThen( int msg, int action )
{ {
m_delegate.showConfirmThen( getString(msg), action ); showConfirmThen( getString(msg), action );
} }
protected void doSyncMenuitem() protected void doSyncMenuitem()