mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
check for null
This commit is contained in:
parent
d94217cc06
commit
385f98f038
1 changed files with 2 additions and 1 deletions
|
@ -2653,7 +2653,8 @@ public class BoardDelegate extends DelegateBase
|
|||
// For now, supported if standalone or either BT or SMS used for transport
|
||||
private boolean rematchSupported( boolean showMulti )
|
||||
{
|
||||
return rematchSupported( showMulti ? m_activity : null,
|
||||
return null != m_summary
|
||||
&& rematchSupported( showMulti ? m_activity : null,
|
||||
m_summary );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue