Skip to content

Commit

Permalink
Fix processing error
Browse files Browse the repository at this point in the history
  • Loading branch information
vshcherb committed Aug 10, 2016
1 parent 1129316 commit 70c694f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -829,7 +829,7 @@ public List<BinaryMapDataObject> searchMapIndex(SearchRequest<BinaryMapDataObjec
req.numberOfReadSubtrees = 0;
List<MapTree> foundSubtrees = new ArrayList<MapTree>();
for (MapIndex mapIndex : mapIndexes) {
if(filterMapIndex == null || mapIndex == filterMapIndex) {
if(filterMapIndex != null && mapIndex != filterMapIndex) {
continue;
}
// lazy initializing rules
Expand Down

0 comments on commit 70c694f

Please sign in to comment.