mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-09 22:00:39 +01:00
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:
parent
e3a8bef3cb
commit
e6454070a6
2 changed files with 2 additions and 4 deletions
3
xwords4/android/.gitignore
vendored
3
xwords4/android/.gitignore
vendored
|
@ -1,6 +1,3 @@
|
||||||
/libraries
|
|
||||||
/modules
|
|
||||||
XWords4-gcm/
|
|
||||||
/.gradle
|
/.gradle
|
||||||
**.iml
|
**.iml
|
||||||
local.properties
|
local.properties
|
||||||
|
|
|
@ -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 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue