remove stuff that wasn't meant to get pushed

This commit is contained in:
Eric House 2022-12-18 16:21:51 -08:00
parent 096c13614a
commit 3b6132d8a1
3 changed files with 1 additions and 6 deletions

View file

@ -561,8 +561,6 @@ public class MQTTUtils extends Thread
private static void notifyNotHere( Context context, String addressee,
int gameID )
{
Log.d( TAG, "notifyNotHere(devID=%s, gameID=%d)", addressee, gameID );
DbgUtils.printStack( TAG );
byte[] packet = XwJNI.dvc_makeMQTTNoSuchGame( gameID );
addToSendQueue( context, addressee, gameID, packet );
}
@ -597,8 +595,6 @@ public class MQTTUtils extends Thread
public static void gameDied( Context context, String devID, int gameID )
{
Log.d( TAG, "gameDied(devID=%s, gameID=%d)", devID, gameID );
DbgUtils.printStack( TAG );
byte[] packet = XwJNI.dvc_makeMQTTNoSuchGame( gameID );
addToSendQueue( context, devID, gameID, packet );
}

View file

@ -67,7 +67,7 @@ public class XWApp extends Application
ProcessLifecycleOwner.get().getLifecycle().addObserver(this);
android.util.Log.i( TAG, "now here; onCreate(); git_rev="
android.util.Log.i( TAG, "onCreate(); git_rev="
+ BuildConfig.GIT_REV );
Log.enable( this );

View file

@ -325,7 +325,6 @@ dvc_makeMQTTNoSuchGame( XW_DUtilCtxt* dutil, XWEnv xwe,
XWStreamCtxt* stream, XP_U32 gameID,
XP_U32 timestamp )
{
LOG_FUNC();
addHeaderGameIDAndCmd( dutil, xwe, CMD_DEVGONE, gameID,
timestamp, stream );
}