a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/ggDump.c src/hg/lib/ggDump.c
index ca6b601..f9d7729 100644
--- src/hg/lib/ggDump.c
+++ src/hg/lib/ggDump.c
@@ -1,26 +1,25 @@
 /*****************************************************************************
  * Copyright (C) 2000 Jim Kent.  This source code may be freely used         *
  * for personal, academic, and non-profit purposes.  Commercial use          *
  * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) *
  *****************************************************************************/
 /* ggDump - Dump out geneGraph structures. */
 #include "common.h"
 #include "ggMrnaAli.h"
 #include "ggPrivate.h"
 
-static char const rcsid[] = "$Id: ggDump.c,v 1.6 2005/04/13 06:25:53 markd Exp $";
 
 static char charForType(int type)
 /* Return character corresponding to edge. */
 {
 char c = 0;
 switch (type)
     {
     case ggSoftStart:
 	c = '{';
 	break;
     case ggSoftEnd:
 	c = '}';
 	break;
     case ggHardStart:
 	c = '[';