Export to GitHub

bobo-browse - issue #28
RangeFacetHandler does not honour the autoRange parameter in the constructor
Posted on Oct 19, 2009 by
Quick Ox
Fairly trivial, but if one uses the RangeFacetHandler constructor that takes in an autoRange parameter, the constructor defaults to true, and ignores the parameter value passed in:
public RangeFacetHandler(String name,String indexFieldName,TermListFactory termListFactory,boolean
autoRange) { super(name); _dataCache = null; _indexFieldName = indexFieldName; _termListFactory = termListFactory; _predefinedRanges = null; _autoRange = true; }
Comment #1
Posted on Oct 24, 2009 by Grumpy HippoThanks tallpsmith!
Status: Fixed
Labels:
Type-Defect
Priority-Medium