Small improvement

This commit is contained in:
M66B 2021-01-07 20:11:05 +01:00
parent de01906a46
commit 096fb17929
1 changed files with 3 additions and 3 deletions

View File

@ -490,9 +490,9 @@ public class MessageClassifier {
}
private static class Stat {
int matchedWords = 0;
double totalFrequency = 0;
List<String> words = new ArrayList<>();
private int matchedWords = 0;
private double totalFrequency = 0;
private List<String> words = new ArrayList<>();
}
private static class Chance {