Enable new indexing merge

This commit is contained in:
Victor Shcherb 2017-04-13 10:34:56 +02:00
parent e952b5a4a9
commit 4a453f5f57

View file

@ -10,10 +10,10 @@ public class CommonWords {
}
public static int getCommon(String name) {
if(true) {
// not ready for old versions yet
return -1;
}
// if(true) {
// // not ready for old versions yet
// return -1;
// }
Integer i = commonWordsDictionary.get(name);
return i == null ? -1 : i.intValue();
}