diff options
author | 2014-01-09 18:29:11 +0900 | |
---|---|---|
committer | 2014-01-09 19:05:09 +0900 | |
commit | ee35e69eae734448d0aa90e46037273cc3f1e6ad (patch) | |
tree | 4b9fc06ecaddc7f43cdef1f2a78ea4a2848c2347 /java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java | |
parent | 494e2d6c17cdbf27615a2fbc02b12d2562bf7cd3 (diff) | |
download | latinime-ee35e69eae734448d0aa90e46037273cc3f1e6ad.tar.gz latinime-ee35e69eae734448d0aa90e46037273cc3f1e6ad.tar.xz latinime-ee35e69eae734448d0aa90e46037273cc3f1e6ad.zip |
Passing SpacingAndPunctuations to StringUtils.looksValidForDictionaryInsertion
This change must be checked in together with Iec437d6df0.
Change-Id: Idf745b8870965f3bdf690de7ff3b22f83f6204bf
Diffstat (limited to 'java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java b/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java index 124c97517..dbe30e260 100644 --- a/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java +++ b/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java @@ -18,7 +18,6 @@ package com.android.inputmethod.latin.settings; import android.content.res.Resources; -import com.android.inputmethod.annotations.UsedForTesting; import com.android.inputmethod.keyboard.internal.KeySpecParser; import com.android.inputmethod.latin.Constants; import com.android.inputmethod.latin.Dictionary; @@ -43,24 +42,6 @@ public final class SpacingAndPunctuations { public final boolean mCurrentLanguageHasSpaces; public final boolean mUsesAmericanTypography; - // TODO: Remove this constructor. - @UsedForTesting - SpacingAndPunctuations(final Locale locale) { - mSymbolsPrecededBySpace = new int[] { '(', '[', '{', '&' }; - Arrays.sort(mSymbolsPrecededBySpace); - mSymbolsFollowedBySpace = new int[] { '.', ',', ';', ':', '!', '?', ')', ']', '}', '&' }; - Arrays.sort(mSymbolsFollowedBySpace); - mWordConnectors = new int[] { '\'', '-' }; - Arrays.sort(mWordConnectors); - mSentenceSeparator = Constants.CODE_PERIOD; - mSentenceSeparatorAndSpace = ". "; - final String[] suggestPuncsSpec = new String[] { "!", "?", ",", ":", ";" }; - mSuggestPuncList = createSuggestPuncList(suggestPuncsSpec); - mWordSeparators = "&\t \n()[]{}*&<>+=|.,;:!?/_\""; - mCurrentLanguageHasSpaces = true; - mUsesAmericanTypography = Locale.ENGLISH.getLanguage().equals(locale.getLanguage()); - } - public SpacingAndPunctuations(final Resources res) { mSymbolsPrecededBySpace = StringUtils.toCodePointArray(res.getString(R.string.symbols_preceded_by_space)); |