a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgTracks/altGraphXTrack.c src/hg/hgTracks/altGraphXTrack.c
index 1ee4769..b8ac756 100644
--- src/hg/hgTracks/altGraphXTrack.c
+++ src/hg/hgTracks/altGraphXTrack.c
@@ -1,28 +1,27 @@
 /* altGraphXTrack - Functions to display altGraphX tracks in browser.
    altGraphX is used to display alternative splicing in browser. */
 
 #include "common.h"
 #include "hash.h"
 #include "jksql.h"
 #include "hdb.h"
 #include "hgTracks.h"
 #include "altGraphX.h"
 #include "geneGraph.h"
 #include "spaceSaver.h"
 
-static char const rcsid[] = "$Id: altGraphXTrack.c,v 1.17 2010/05/11 01:43:26 kent Exp $";
 
 const static int altGraphXMaxRows = 20;
 
 boolean altGraphXInEdges(struct ggEdge *edges, int v1, int v2)
 /* Return TRUE if a v1-v2 edge is in the list FALSE otherwise. */
 {
 struct ggEdge *e = NULL;
 for(e = edges; e != NULL; e = e->next)
     {
     if(e->vertex1 == v1 && e->vertex2 == v2)
 	return TRUE;
     }
 return FALSE;
 }