mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-23 07:27:22 +01:00
fix NPE in new logging code
This commit is contained in:
parent
cbac691be3
commit
fdd1e5c148
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ public class MainActivity extends XWActivity
|
||||||
|
|
||||||
private void logPaneFragments()
|
private void logPaneFragments()
|
||||||
{
|
{
|
||||||
if ( BuildConfig.DEBUG ) {
|
if ( BuildConfig.DEBUG && null != m_root ) {
|
||||||
List<String> pairs = new ArrayList<>();
|
List<String> pairs = new ArrayList<>();
|
||||||
int childCount = m_root.getChildCount();
|
int childCount = m_root.getChildCount();
|
||||||
for ( int ii = 0; ii < childCount; ++ii ) {
|
for ( int ii = 0; ii < childCount; ++ii ) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue