mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
don't assert in race condition loss
This commit is contained in:
parent
0e0615f5d2
commit
7efd084d35
1 changed files with 13 additions and 12 deletions
|
@ -243,7 +243,7 @@ public class NetStateCache {
|
|||
mNotifyLater = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
Assert.assertTrue( mLastStateSent != s_netAvail );
|
||||
if ( mLastStateSent != s_netAvail ) {
|
||||
mLastStateSent = s_netAvail;
|
||||
|
||||
Log.i( TAG, "notifyStateChanged(%b)", s_netAvail );
|
||||
|
@ -261,6 +261,7 @@ public class NetStateCache {
|
|||
GameUtils.resendAllIf( context, typ );
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
mHandler.postDelayed( mNotifyLater, WAIT_STABLE_MILLIS );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue