remove debug-only assert firing when lang of emulator changed

This commit is contained in:
Eric House 2024-01-13 08:48:47 -08:00
parent 7da80cf096
commit 1fa2b05b4c

View file

@ -306,13 +306,7 @@ public class DictLangCache {
result = cache.get( langName );
}
if ( null == result ) {
Assert.failDbg();
// getinfo
}
// Log.d( TAG, "getLangIsoCode(%s) => %s", langName, result );
// Assert.assertTrueNR( null != result );
return result;
}