e746fa8cd0ad323ba549ddb3ea05825f2927cec1 kate Mon May 15 15:47:13 2017 -0700 Cleanup some comments. refs #18736 diff --git src/hg/lib/hgFind.c src/hg/lib/hgFind.c index a9234ab..2a57b4a 100644 --- src/hg/lib/hgFind.c +++ src/hg/lib/hgFind.c @@ -2587,31 +2587,30 @@ } #if 0 /* not used */ static void noRelative(boolean relativeFlag, int relStart, int relEnd, char *table) { if (relativeFlag) hUserAbort("Sorry, range spec (\":%d-%d\") is not supported for %s.", relStart+1, relEnd, table); } #endif static boolean isBigFileFind(struct hgFindSpec *hfs) /* is this a find on a big* file? */ -// KRR TODOO: replace with table lookup (same as tdbIsBIgBed) in trackDb.h ? { return sameString(hfs->searchType, "bigBed") || sameString(hfs->searchType, "bigPsl") || sameString(hfs->searchType, "bigBarChart") || sameString(hfs->searchType, "bigGenePred"); } static boolean findBigBed(char *db, struct hgFindSpec *hfs, char *spec, struct hgPositions *hgp) /* Look up items in bigBed */ { struct trackDb *tdb = tdbFindOrCreate(db, NULL, hfs->searchTable); return findBigBedPosInTdbList(db, tdb, spec, hgp, hfs); }