Fix debug compilation + small cleanup

Change-Id: Ia89d84f62ba38dee05d25fbc94698e889cf27d2c
main
Jean Chalard 2012-04-17 17:31:45 +09:00
parent ee396df162
commit fec6837ae1
2 changed files with 0 additions and 3 deletions

View File

@ -30,7 +30,6 @@ BigramDictionary::BigramDictionary(const unsigned char *dict, int maxWordLength,
: DICT(dict), MAX_WORD_LENGTH(maxWordLength), mParentDictionary(parentDictionary) {
if (DEBUG_DICT) {
AKLOGI("BigramDictionary - constructor");
AKLOGI("Has Bigram : %d", hasBigram);
}
}

View File

@ -58,8 +58,6 @@ class Dictionary {
static int wideStrLen(unsigned short *str);
private:
bool hasBigram();
const unsigned char *mDict;
// Used only for the mmap version of dictionary loading, but we use these as dummy variables