diff --git a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/GameOverAlert.java b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/GameOverAlert.java index de59d89bb..e2b12519e 100644 --- a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/GameOverAlert.java +++ b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/GameOverAlert.java @@ -121,7 +121,6 @@ public class GameOverAlert extends XWDialogFragment } }); - Log.d( TAG, "onCreateDialog() => %s", mDialog ); return mDialog; } diff --git a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/Utils.java b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/Utils.java index d07057430..221c9e8e2 100644 --- a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/Utils.java +++ b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/Utils.java @@ -686,7 +686,6 @@ public class Utils { return result; } - static void enableAlertButton( AlertDialog dlg, int which, boolean enable ) { Button button = dlg.getButton(which); diff --git a/xwords4/common/dictnry.c b/xwords4/common/dictnry.c index 78b7f867d..a66971faf 100644 --- a/xwords4/common/dictnry.c +++ b/xwords4/common/dictnry.c @@ -768,6 +768,7 @@ common_destructor( DictionaryCtxt* dict, XWEnv XP_UNUSED(xwe) ) XP_FREE( dict->mpool, dict ); } /* common_destructor */ +#ifndef XWFEATURE_STANDALONE_ONLY void dict_loadFromStream( DictionaryCtxt* dict, XWEnv xwe, XWStreamCtxt* stream ) { @@ -828,6 +829,7 @@ dict_loadFromStream( DictionaryCtxt* dict, XWEnv xwe, XWStreamCtxt* stream ) } setBlankTile( dict ); } /* dict_loadFromStream */ +#endif #ifdef TEXT_MODEL /* Return the strlen of the longest face, e.g. 1 for English and Italian; diff --git a/xwords4/common/server.c b/xwords4/common/server.c index 16aab9885..87f8511bc 100644 --- a/xwords4/common/server.c +++ b/xwords4/common/server.c @@ -1937,15 +1937,11 @@ client_readInitialMessage( ServerCtxt* server, XWEnv xwe, XWStreamCtxt* stream ) XP_U16 nCols = localGI.boardSize; - XP_LOGFF( "streamVersion: %d; STREAM_VERS_NOEMPTYDICT: %d", - streamVersion, STREAM_VERS_NOEMPTYDICT ); if ( streamVersion < STREAM_VERS_NOEMPTYDICT ) { XP_LOGFF( "loading and dropping empty dict" ); DictionaryCtxt* empty = util_makeEmptyDict( server->vol.util, xwe ); dict_loadFromStream( empty, xwe, stream ); dict_unref( empty, xwe ); - } else { - XP_LOGFF( "NO empty dict bytes to skip" ); } #ifdef STREAM_VERS_BIGBOARD @@ -2105,8 +2101,6 @@ sendInitialMessage( ServerCtxt* server, XWEnv xwe ) if ( streamVersion < STREAM_VERS_NOEMPTYDICT ) { XP_LOGFF( "writing dict to stream" ); dict_writeToStream( dict, stream ); - } else { - XP_LOGFF( "SKIPPING write of dict to stream" ); } #ifdef STREAM_VERS_BIGBOARD if ( STREAM_VERS_DICTNAME <= streamVersion ) {