Enable new indexing merge
This commit is contained in:
parent
e952b5a4a9
commit
4a453f5f57
1 changed files with 4 additions and 4 deletions
|
@ -10,10 +10,10 @@ public class CommonWords {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int getCommon(String name) {
|
public static int getCommon(String name) {
|
||||||
if(true) {
|
// if(true) {
|
||||||
// not ready for old versions yet
|
// // not ready for old versions yet
|
||||||
return -1;
|
// return -1;
|
||||||
}
|
// }
|
||||||
Integer i = commonWordsDictionary.get(name);
|
Integer i = commonWordsDictionary.get(name);
|
||||||
return i == null ? -1 : i.intValue();
|
return i == null ? -1 : i.intValue();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue