mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
SEARCH-121: Changing facetfield mincount to 1 by default.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@131326 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -68,7 +68,7 @@ public class FacetField
|
||||
this.missing = missing == null?false:missing;
|
||||
this.limit = limit; //Can be null
|
||||
this.offset = offset == null?0:offset;
|
||||
this.mincount = mincount == null?0:mincount;
|
||||
this.mincount = mincount == null?1:mincount;
|
||||
this.facetEnumCacheMinDf = facetEnumCacheMinDf == null?0:facetEnumCacheMinDf;
|
||||
}
|
||||
/**
|
||||
|
Reference in New Issue
Block a user