diff options
| -rw-r--r-- | core/java/android/provider/Settings.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 6edcec18fdba..a10c30dfd48a 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -6985,8 +6985,9 @@ public final class Settings { private static final Validator SELECTED_SPELL_CHECKER_VALIDATOR = COMPONENT_NAME_VALIDATOR; /** - * The {@link ComponentName} string of the selected subtype of the selected spell checker - * service which is one of the services managed by the text service manager. + * {@link android.view.textservice.SpellCheckerSubtype#hashCode()} of the selected subtype + * of the selected spell checker service which is one of the services managed by the text + * service manager. * * @hide */ @@ -6994,7 +6995,7 @@ public final class Settings { "selected_spell_checker_subtype"; private static final Validator SELECTED_SPELL_CHECKER_SUBTYPE_VALIDATOR = - COMPONENT_NAME_VALIDATOR; + ANY_INTEGER_VALIDATOR; /** * Whether spell checker is enabled or not. |