a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgGenome/maf.c src/hg/hgGenome/maf.c
index 7078af0..dcbb1c2 100644
--- src/hg/hgGenome/maf.c
+++ src/hg/hgGenome/maf.c
@@ -3,31 +3,30 @@
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "portable.h"
 #include "obscure.h"
 #include "jksql.h"
 #include "cheapcgi.h"
 #include "cart.h"
 #include "web.h"
 #include "trackDb.h"
 #include "maf.h"
 #include "hgMaf.h"
 #include "hgGenome.h"
 
-static char const rcsid[] = "$Id: maf.c,v 1.2 2010/05/11 01:43:24 kent Exp $";
 
 boolean isMafTable(char *database, struct trackDb *track, char *table)
 /* Return TRUE if table is maf. */
 {
 char setting[128], *p = setting;
 
 if (track == NULL)
     return FALSE;
 safecpy(setting, sizeof setting, track->type);
 char *type = nextWord(&p);
 
 if (sameString(type, "maf") || sameString(type, "wigMaf"))
     if (sameString(track->table, table))
         return TRUE;
 return FALSE;