Simplification

pull/212/head
M66B 2 years ago
parent 7094d2b9cc
commit d7a15b589a

@ -388,14 +388,12 @@ public class MessageClassifier {
} }
private static int getWordIndex(String word) { private static int getWordIndex(String word) {
synchronized (wordIndex) { Integer index = wordIndex.get(word);
Integer index = wordIndex.get(word); if (index == null) {
if (index == null) { index = wordIndex.size();
index = wordIndex.size(); wordIndex.put(word, index);
wordIndex.put(word, index);
}
return index;
} }
return index;
} }
private static String getWord(Integer index) { private static String getWord(Integer index) {

Loading…
Cancel
Save