remove an oft-firing assert

It's definitely happening, and disruptive though debug-only. So remove
to be tracked down eventually.
This commit is contained in:
Eric House 2017-06-20 19:17:23 -07:00
parent e3a8bef3cb
commit e6454070a6
2 changed files with 2 additions and 4 deletions

View file

@ -1,6 +1,3 @@
/libraries
/modules
XWords4-gcm/
/.gradle /.gradle
**.iml **.iml
local.properties local.properties

View file

@ -280,7 +280,8 @@ public class XWActivity extends FragmentActivity
df.show( fm, tag ); df.show( fm, tag );
} catch (IllegalStateException ise ) { } catch (IllegalStateException ise ) {
Log.d( TAG, "error showing tag %s (df: %s)", tag, df ); Log.d( TAG, "error showing tag %s (df: %s)", tag, df );
Assert.assertFalse( BuildConfig.DEBUG ); // DLG_SCORES is causing this
// Assert.assertFalse( BuildConfig.DEBUG );
} }
} }
} }