diff options
author | 2015-03-17 14:16:15 +0000 | |
---|---|---|
committer | 2015-03-17 14:16:15 +0000 | |
commit | 8a53b381ea22c399d27ef4c30f88f0d3a2546842 (patch) | |
tree | 17c3766ede3479111c18ddf9ebb937d4ed0c6d11 /java/src | |
parent | 8e8d28882f5dff8548f2f2f86e29ff9b72ab9a7c (diff) | |
parent | 263dd9fe037784253b9837729bb5a9e51bd2f5cb (diff) | |
download | latinime-8a53b381ea22c399d27ef4c30f88f0d3a2546842.tar.gz latinime-8a53b381ea22c399d27ef4c30f88f0d3a2546842.tar.xz latinime-8a53b381ea22c399d27ef4c30f88f0d3a2546842.zip |
am 263dd9fe: Merge "Deprecate SuggestedWords.mSourceDict"
* commit '263dd9fe037784253b9837729bb5a9e51bd2f5cb':
Deprecate SuggestedWords.mSourceDict
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SuggestedWords.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/SuggestedWords.java b/java/src/com/android/inputmethod/latin/SuggestedWords.java index 3816c0870..87fe29159 100644 --- a/java/src/com/android/inputmethod/latin/SuggestedWords.java +++ b/java/src/com/android/inputmethod/latin/SuggestedWords.java @@ -270,6 +270,7 @@ public class SuggestedWords { public final int mScore; public final int mKindAndFlags; public final int mCodePointCount; + @Deprecated public final Dictionary mSourceDict; // For auto-commit. This keeps track of the index inside the touch coordinates array // passed to native code to get suggestions for a gesture that corresponds to the first @@ -360,6 +361,7 @@ public class SuggestedWords { return mWord; } + @Deprecated public Dictionary getSourceDictionary() { return mSourceDict; } |