SOLR-5488: fix set removal bug

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1545009 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2013-11-24 17:12:05 +00:00
parent 513c277e73
commit 4ff856d994
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ public class AnalyticsRequestFactory implements AnalyticsParams {
Set<String> depends = queryFacet.getDependencies();
int place = 0;
for (QueryFacetRequest qfr : currentList) {
if (qfr.getDependencies().remove(queryFacet)) {
if (qfr.getDependencies().remove(queryFacet.getName())) {
break;
}
place++;