Merge "Fix possible NPE in debug mode"

main
Jean Chalard 2011-10-06 03:44:24 -07:00 committed by Android (Google) Code Review
commit 3d36cdcd2d
1 changed files with 4 additions and 2 deletions

View File

@ -443,8 +443,10 @@ public class AndroidSpellCheckerService extends SpellCheckerService {
Log.i(TAG, "IsInDict = " + isInDict);
Log.i(TAG, "LooksLikeTypo = " + (!isInDict));
Log.i(TAG, "HasLikelySuggestions = " + result.mHasLikelySuggestions);
for (String suggestion : result.mSuggestions) {
Log.i(TAG, suggestion);
if (null != result.mSuggestions) {
for (String suggestion : result.mSuggestions) {
Log.i(TAG, suggestion);
}
}
}