tiny refactor

Change-Id: I776432b6c41cf8dee71fbd1565a6f3da9d762f9e
main
Satoshi Kataoka 2013-08-15 13:33:45 +09:00
parent be4d38e61f
commit 1aae34873c
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public final class UserHistoryDictionaryBigramList {
* Called when loaded from the SQL DB.
*/
public void addBigram(String word1, String word2, byte fcValue) {
if (UserHistoryPredictionDictionary.DBG_SAVE_RESTORE) {
if (DynamicPredictionDictionaryBase.DBG_SAVE_RESTORE) {
Log.d(TAG, "--- add bigram: " + word1 + ", " + word2 + ", " + fcValue);
}
final HashMap<String, Byte> map;
@ -73,7 +73,7 @@ public final class UserHistoryDictionaryBigramList {
* Called when inserted to the SQL DB.
*/
public void updateBigram(String word1, String word2, byte fcValue) {
if (UserHistoryPredictionDictionary.DBG_SAVE_RESTORE) {
if (DynamicPredictionDictionaryBase.DBG_SAVE_RESTORE) {
Log.d(TAG, "--- update bigram: " + word1 + ", " + word2 + ", " + fcValue);
}
final HashMap<String, Byte> map;