This commit is contained in:
Victor Shcherb 2017-12-04 13:06:21 +02:00
parent 8c12d4e0ea
commit 62e4059a92

View file

@ -587,6 +587,9 @@ public class SearchPhrase {
Iterator<BinaryMapIndexReader> it = indexes.iterator();
while (it.hasNext()) {
BinaryMapIndexReader r = it.next();
if(r == null || r.getFile() == null) {
continue;
}
String filename = r.getFile().getName();
if (filename.matches("([a-zA-Z-]+_)+([0-9]+_){2}[0-9]+\\.obf")) {
String currRegionName = r.getRegionName();