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/near/hgNear/association.c src/hg/near/hgNear/association.c
index 9cd96f3..54c1b2d 100644
--- src/hg/near/hgNear/association.c
+++ src/hg/near/hgNear/association.c
@@ -1,27 +1,27 @@
 /* association - handle association type columns.  
  * An association is a two column table (or query)
  * with one column corresponding to a key, and the other
  * to a value.  It is very similar to a lookup type.
  * However where there is only one value per key in a lookup
  * there can be multiple values per keyin an association.
  *
  * Originally the pfam column was an association.  Unfortunately
  * mySQL was just too slow with the join that it required. */
 
 /* Copyright (C) 2013 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. */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "localmem.h"
 #include "dystring.h"
 #include "obscure.h"
 #include "jksql.h"
 #include "hdb.h"
 #include "hgNear.h"
 
 boolean associationExists(struct column *col, struct sqlConnection *conn)
 /* This returns true if all tables this depends on exists. */
 {
 char *dupe = cloneString(col->tablesUsed);