a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgGene/method.c src/hg/hgGene/method.c
index 7c5f95c..6677739 100644
--- src/hg/hgGene/method.c
+++ src/hg/hgGene/method.c
@@ -1,33 +1,32 @@
 /* method - UCSC Known Genes Method. */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "spDb.h"
 #include "web.h"
 #include "hgGene.h"
 
-static char const rcsid[] = "$Id: method.c,v 1.8 2007/04/13 03:19:31 kent Exp $";
 
 
 static void methodPrint(struct section *section, 
 	struct sqlConnection *conn, char *geneId)
 /* Print out link to UCSC KG method and credits details. */
 {
 
 hPrintf("Click ");
 hPrintf("<A HREF=\"../cgi-bin/hgGene?%s=1&%s\">", hggDoKgMethod, cartSidUrlString(cart));
 hPrintf("here</A>\n");
 hPrintf(" for details on how this gene model was made and data restrictions if any.");
 }
 
 struct section *methodSection(struct sqlConnection *conn,
 	struct hash *sectionRa)
 /* Create UCSC KG Method section. */
 {
 struct section *section = sectionNew(sectionRa, "method");
 section->print = methodPrint;
 return section;
 }