Fix stack overflow

Change-Id: I977b240ea462b40852ba9504282312d5fa4e2885
main
Tadashi G. Takaoka 2012-04-19 20:21:02 +09:00
parent ab39afca23
commit b9fca7a192
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ public class SubtypeLocale {
// fixed. // fixed.
if (keyboardLayoutSet == null) { if (keyboardLayoutSet == null) {
android.util.Log.w(TAG, "KeyboardLayoutSet not found, use QWERTY: " + android.util.Log.w(TAG, "KeyboardLayoutSet not found, use QWERTY: " +
getFullDisplayName(subtype) + " extraValue=" + subtype.getExtraValue()); "locale=" + subtype.getLocale() + " extraValue=" + subtype.getExtraValue());
return AdditionalSubtype.QWERTY; return AdditionalSubtype.QWERTY;
} }
return keyboardLayoutSet; return keyboardLayoutSet;