diff options
author | 2014-09-08 13:52:04 +0000 | |
---|---|---|
committer | 2014-09-08 13:52:04 +0000 | |
commit | b34aee54a1370161a8c1ff85c4c646e1acb80687 (patch) | |
tree | 6fa00a5d472cef4273c2d6f811f0ae824a4bea9e /java | |
parent | aad99530b0984a2b66143d4c8826fe4c0f281cfc (diff) | |
parent | 7140035932ec98ce003b6b7a5100a0aca501505f (diff) | |
download | latinime-b34aee54a1370161a8c1ff85c4c646e1acb80687.tar.gz latinime-b34aee54a1370161a8c1ff85c4c646e1acb80687.tar.xz latinime-b34aee54a1370161a8c1ff85c4c646e1acb80687.zip |
am 71400359: Fix a missing initialization
* commit '7140035932ec98ce003b6b7a5100a0aca501505f':
Fix a missing initialization
Diffstat (limited to 'java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java b/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java index 42771ce11..97aad3b6d 100644 --- a/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java +++ b/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java @@ -82,8 +82,10 @@ public final class SpacingAndPunctuations { mSortedSymbolsClusteringTogether = model.mSortedSymbolsClusteringTogether; mSortedWordConnectors = model.mSortedWordConnectors; mSortedWordSeparators = overrideSortedWordSeparators; + mSortedSentenceTerminators = model.mSortedSentenceTerminators; mSuggestPuncList = model.mSuggestPuncList; mSentenceSeparator = model.mSentenceSeparator; + mAbbreviationMarker = model.mAbbreviationMarker; mSentenceSeparatorAndSpace = model.mSentenceSeparatorAndSpace; mCurrentLanguageHasSpaces = model.mCurrentLanguageHasSpaces; mUsesAmericanTypography = model.mUsesAmericanTypography; |