mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-06 05:24:46 +01:00
no need to set summary to null when pausing.
This commit is contained in:
parent
e127c8a3aa
commit
f51565839a
1 changed files with 1 additions and 2 deletions
|
@ -2458,7 +2458,6 @@ public class BoardDelegate extends DelegateBase
|
|||
|
||||
m_jniThread.release();
|
||||
m_jniThread = null;
|
||||
m_summary = null;
|
||||
|
||||
m_view.stopHandling();
|
||||
|
||||
|
@ -2688,7 +2687,7 @@ public class BoardDelegate extends DelegateBase
|
|||
GameSummary summary )
|
||||
{
|
||||
boolean supported = false;
|
||||
if ( XWApp.REMATCH_SUPPORTED && null != summary ) {
|
||||
if ( XWApp.REMATCH_SUPPORTED ) {
|
||||
// standalone games are easy to rematch
|
||||
supported = summary.serverRole == DeviceRole.SERVER_STANDALONE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue