Skip to content

Commit

Permalink
efficient implementation of CombinedFacetAccessible
Browse files Browse the repository at this point in the history
  • Loading branch information
Neha Narkhede committed Mar 27, 2010
1 parent fb894ea commit 25f4b6c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ public int compare(BrowseFacet f1, BrowseFacet f2)
* @see com.browseengine.bobo.api.FacetAccessible.visitFacets()
*/
public void visitFacets(FacetVisitor visitor) {
throw new UnsupportedOperationException("visitFacets currently not supported for CombinedFacetAccessible");
for (FacetAccessible facetAccessor : _list) {
facetAccessor.visitFacets(visitor);
}
}

}

0 comments on commit 25f4b6c

Please sign in to comment.