commented out code to add notification used to duplicate the bug

addresses by the previous commit.
This commit is contained in:
Eric House 2016-05-17 21:09:32 -07:00
parent 80ebcff4c9
commit 4791ccaca8
2 changed files with 11 additions and 0 deletions

View file

@ -633,6 +633,9 @@ public class BoardDelegate extends DelegateBase
protected void onResume()
{
super.onResume();
// if( BuildConfig.DEBUG ) {
// GameUtils.postSelfNotification( m_activity, m_rowid );
// }
doResume( false );
}

View file

@ -1126,6 +1126,14 @@ public class GameUtils {
return rint;
}
// public static void postSelfNotification( Context context, long rowid )
// {
// Assert.assertTrue( BuildConfig.DEBUG );
// Intent intent = GamesListDelegate.makeRowidIntent( context, rowid );
// Utils.postNotification( context, intent, "launch",
// String.format("%d", rowid), (int)rowid );
// }
public static void postMoveNotification( Context context, long rowid,
BackMoveResult bmr,
boolean isTurnNow )