get rid of some logging

This commit is contained in:
Andy2 2011-02-28 18:43:47 -08:00
parent 69638d8aa9
commit 54ef8f73c9

View file

@ -51,10 +51,6 @@ public class CommonPrefs {
public int[] bonusColors;
public int[] otherColors;
static {
Utils.logf( "CommonPrefs class initialized" );
}
private CommonPrefs()
{
playerColors = new int[4];
@ -159,7 +155,7 @@ public class CommonPrefs {
result = Integer.parseInt( val );
} catch ( Exception ex ) {
}
Utils.logf( "getDefaultProxyPort=>%d", result );
// Utils.logf( "getDefaultProxyPort=>%d", result );
return result;
}
@ -285,5 +281,4 @@ public class CommonPrefs {
.getDefaultSharedPreferences( context );
return sp.getString( key, "" );
}
}