mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +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
|
// For now, supported if standalone or either BT or SMS used for transport
|
||||||
private boolean rematchSupported( boolean showMulti )
|
private boolean rematchSupported( boolean showMulti )
|
||||||
{
|
{
|
||||||
return rematchSupported( showMulti ? m_activity : null,
|
return null != m_summary
|
||||||
|
&& rematchSupported( showMulti ? m_activity : null,
|
||||||
m_summary );
|
m_summary );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue