From 7da22e27216354db3202227b26c5a41bb310d8cb Mon Sep 17 00:00:00 2001 From: sspanak Date: Sat, 9 Dec 2023 10:45:21 +0200 Subject: [PATCH] code style fixes --- src/io/github/sspanak/tt9/db/DictionaryDb.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/io/github/sspanak/tt9/db/DictionaryDb.java b/src/io/github/sspanak/tt9/db/DictionaryDb.java index b57b72fa8..cdcc843fd 100644 --- a/src/io/github/sspanak/tt9/db/DictionaryDb.java +++ b/src/io/github/sspanak/tt9/db/DictionaryDb.java @@ -175,7 +175,7 @@ public static void incrementWordFrequency(@NonNull Language language, @NonNull S // In case the user has changed the text case, there would be no match. // Try again with the lowercase equivalent. if (dbWord == null) { - dbWord = getStore().get(language.getId(), word, sequence, false); + dbWord = getStore().get(language.getId(), word, sequence, false); } if (dbWord == null) { @@ -191,7 +191,7 @@ public static void incrementWordFrequency(@NonNull Language language, @NonNull S Logger.d( "incrementWordFrequency", "Incremented frequency of '" + dbWord.word + "' to: " + dbWord.frequency + ". Time: " + time + " ms" - ); + ); } else { long time = System.currentTimeMillis() - start; Logger.d(