remove assert until I can fix it

This commit is contained in:
Eric House 2023-08-05 14:39:57 -07:00
parent 2624030bbf
commit e708b14c59
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@ public class XwJNI {
} else { } else {
Log.d( TAG, "release(): no ENV!!! (this=%H, rowid=%d)", Log.d( TAG, "release(): no ENV!!! (this=%H, rowid=%d)",
this, m_rowid ); this, m_rowid );
Assert.failDbg(); // seen on Play Store console Assert.failDbg(); // seen on Play Store console; and now!!
} }
m_ptrGame = 0; m_ptrGame = 0;
} }

View file

@ -292,7 +292,7 @@ envForMe( EnvThreadInfo* ti, const char* caller )
if( !result ) { if( !result ) {
pthread_t self = pthread_self(); pthread_t self = pthread_self();
XP_LOGFF( "no env for %s (thread %x)", caller, (int)self ); XP_LOGFF( "no env for %s (thread %x)", caller, (int)self );
XP_ASSERT(0); // XP_ASSERT(0); /* firing a lot */
} }
#endif #endif
return result; return result;