mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-05 20:45:49 +01:00
remove assertion
This commit is contained in:
parent
16ced1dd49
commit
f1ab7be1a3
1 changed files with 2 additions and 1 deletions
|
@ -2298,7 +2298,6 @@ public class BoardDelegate extends DelegateBase
|
||||||
runOnUiThread( new Runnable() {
|
runOnUiThread( new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
Assert.assertTrueNR( m_jniGamePtr.isRetained() );
|
|
||||||
if ( m_jniGamePtr.isRetained() ) {
|
if ( m_jniGamePtr.isRetained() ) {
|
||||||
boolean hasPending = 0 < XwJNI.
|
boolean hasPending = 0 < XwJNI.
|
||||||
comms_countPendingPackets( m_jniGamePtr );
|
comms_countPendingPackets( m_jniGamePtr );
|
||||||
|
@ -2307,6 +2306,8 @@ public class BoardDelegate extends DelegateBase
|
||||||
hasPending, inArchiveGroup() )
|
hasPending, inArchiveGroup() )
|
||||||
.configure( onDone, BoardDelegate.this );
|
.configure( onDone, BoardDelegate.this );
|
||||||
show( mGameOverAlert );
|
show( mGameOverAlert );
|
||||||
|
} else {
|
||||||
|
Log.e( TAG, "gamePtr not retained" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Add table
Reference in a new issue