Skip to content

Commit

Permalink
code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sspanak committed Dec 9, 2023
1 parent cbcc7d0 commit 7da22e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/io/github/sspanak/tt9/db/DictionaryDb.java
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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(
Expand Down

0 comments on commit 7da22e2

Please sign in to comment.