mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
fix NPE in logging
This commit is contained in:
parent
7e19a4ef85
commit
29328e6412
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ public class DbgUtils {
|
|||
List<String> strs = new ArrayList<>();
|
||||
if ( null != params ) {
|
||||
for ( Object obj : params ) {
|
||||
strs.add( obj.toString() );
|
||||
strs.add( String.format( "%s", obj ) );
|
||||
}
|
||||
}
|
||||
return TextUtils.join( ", ", strs );
|
||||
|
|
Loading…
Reference in a new issue