aboutsummaryrefslogtreecommitdiffstats
path: root/native/jni/src/gesture/incremental_decoder_wrapper.h
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2012-08-13 00:21:50 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-08-13 00:21:50 -0700
commit8db85a419eb2235c97e1fb3a9e38ca0024042df1 (patch)
tree481a8c9331b4c36f6874afe0bc98b693b138e9ea /native/jni/src/gesture/incremental_decoder_wrapper.h
parent85ed27c9dd54af46c7cc6101a9caab17a5212e9a (diff)
parentf144cc61cc9b704f890ad703c5220c3eed891743 (diff)
downloadlatinime-8db85a419eb2235c97e1fb3a9e38ca0024042df1.tar.gz
latinime-8db85a419eb2235c97e1fb3a9e38ca0024042df1.tar.xz
latinime-8db85a419eb2235c97e1fb3a9e38ca0024042df1.zip
am f144cc61: Merge "Step 24-A remove setdict" into jb-mr1-dev
* commit 'f144cc61cc9b704f890ad703c5220c3eed891743': Step 24-A remove setdict
Diffstat (limited to '')
-rw-r--r--native/jni/src/gesture/incremental_decoder_wrapper.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/native/jni/src/gesture/incremental_decoder_wrapper.h b/native/jni/src/gesture/incremental_decoder_wrapper.h
index f47d539b7..5cb2ee368 100644
--- a/native/jni/src/gesture/incremental_decoder_wrapper.h
+++ b/native/jni/src/gesture/incremental_decoder_wrapper.h
@@ -48,14 +48,6 @@ class IncrementalDecoderWrapper : public IncrementalDecoderInterface {
inputSize, commitPoint, outWords, frequencies, outputIndices, outputTypes);
}
- void setDict(const UnigramDictionary *dict, const BigramDictionary *bigram,
- const uint8_t *dictRoot, int rootPos) {
- if (!mIncrementalDecoderInterface) {
- return;
- }
- mIncrementalDecoderInterface->setDict(dict, bigram, dictRoot, rootPos);
- }
-
static void setIncrementalDecoderFactoryMethod(
IncrementalDecoderInterface *(*factoryMethod)(int, int)) {
sIncrementalDecoderFactoryMethod = factoryMethod;