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/lib/annoFormatter.c src/lib/annoFormatter.c
index ce97114..4c36aba 100644
--- src/lib/annoFormatter.c
+++ src/lib/annoFormatter.c
@@ -1,29 +1,29 @@
 /* annoFormatter -- aggregates, formats and writes output from multiple sources */
 
 /* 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 "annoFormatter.h"
 
 struct annoOption *annoFormatterGetOptions(struct annoFormatter *self)
 /* Return supported options and current settings.  Callers can modify and free when done. */
 {
 return annoOptionCloneList(self->options);
 }
 
 void annoFormatterSetOptions(struct annoFormatter *self, struct annoOption *newOptions)
 /* Free old options and use clone of newOptions. */
 {
 annoOptionFreeList(&(self->options));
 self->options = annoOptionCloneList(newOptions);
 }
 
 void annoFormatterFree(struct annoFormatter **pSelf)
 /* Free self. This should be called at the end of subclass close methods, after
  * subclass-specific connections are closed and resources are freed. */
 {
 if (pSelf == NULL)
     return;
 annoOptionFreeList(&((*pSelf)->options));
 freez(pSelf);
 }