4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/inc/chromKeeper.h src/hg/inc/chromKeeper.h
index 5a3f095..35919b3 100644
--- src/hg/inc/chromKeeper.h
+++ src/hg/inc/chromKeeper.h
@@ -1,29 +1,29 @@
 /* chromKeeper - Wrapper for binKeepers around the whole genome. */
 
 /* Copyright (C) 2004 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 #ifndef CHROMKEEPER_H
 #define CHROMKEEPER_H
 
 #ifndef BINRANGE_H
 #include "binRange.h"
 #endif
 
 void chromKeeperInit(char *db);
 /* Initialize the chromKeeper to a given database (hg15,mm2, etc). */
 
 void chromKeeperInitChroms(struct slName *nameList, int maxChromSize);
 /* Initialize a chrom keeper with a list of names and a size that
    will be used for each one. */
 
 void chromKeeperAdd(char *chrom, int chromStart, int chromEnd, void *val);
 /* Add an item to the chromKeeper. */
 
 struct binElement *chromKeeperFind(char *chrom, int chromStart, int chromEnd);
 /* Return a list of all items in chromKeeper that intersect range.
    Free this list with slFreeList. */
 
 void chromKeeperRemove(char *chrom, int chromStart, int chromEnd, void *val);
 /* Remove the item from the proper chromKeeper. */
 
 #endif /* CHROMKEEPER_H */