85b93dbee0373fd005f1816c5704b181094c8b99 kent Sun Dec 12 14:55:09 2021 -0800 Trimming an unused and useless function. diff --git src/hg/inc/facetField.h src/hg/inc/facetField.h index 89cef53..c11525b 100644 --- src/hg/inc/facetField.h +++ src/hg/inc/facetField.h @@ -34,33 +34,30 @@ }; int facetValCmpSelectCountDesc(const void *va, const void *vb); /* Compare two facetVal so as to sort them based on selectCount with most used first. * If two have same count, sort alphabetically on facet val. */ int facetValCmp(const void *va, const void *vb); /* Compare two facetVal alphabetically by val */ struct facetVal *facetsClone(struct facetVal *origList); /* Copy the facet vals list */ int facetFieldCountSelected(struct facetField *facetField); /* Return number of facets in list that are selected */ -boolean facetFieldAnyMerged(struct facetField *list); -/* Return TRUE if any facetField on list isMerged */ - void selectedListFacetValUpdate(struct facetField **pSelectedList, char *facetName, char *facetValue, char *op); /* Add or remove by changing selected boolean */ char *linearizeFacetVals(struct facetField *selectedList); /* Linearize selected fields vals into a string */ struct facetField *deLinearizeFacetValString(char *selectedFields); /* Turn linearized selected fields string back into facet structures */ boolean perRowFacetFields(int fieldCount, char **row, char *nullVal, struct facetField *ffArray[]); /* Process each row of a resultset updating use and select counts. * Returns TRUE if row passes selected facet values filter and should be included in the final result set. */ struct facetField *facetFieldsFromSqlTableInit(char *fields[], int fieldCount, char *selectedFields, struct facetField *ffArray[]); /* Initialize ffList and ffArray and selected facet values */