Code clean up

This commit is contained in:
Larry Luo 2022-07-19 19:31:32 -07:00
parent 514e17d037
commit 62cd376efa

View File

@ -212,12 +212,7 @@ bool GinFilter::contains(const GinFilter & af, PostingsCacheForStore &cache_stor
cache_store.cache[af.getMatchString()] = postings_cache;
}
if (match(postings_cache))
{
return true;
}
return false;
return match(postings_cache);
}
const String& GinFilter::getName()