a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/ggDbRep.c src/hg/lib/ggDbRep.c
index f438868..268bb5a 100644
--- src/hg/lib/ggDbRep.c
+++ src/hg/lib/ggDbRep.c
@@ -1,28 +1,27 @@
 /*****************************************************************************
  * 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) *
  *****************************************************************************/
 /* ggDbRep.c was originally generated by the autoSql program, which also 
  * generated ggDbRep.h and ggDbRep.sql.  This module links the database and the RAM 
  * representation of objects. */
 #include "common.h"
 #include "jksql.h"
 #include "ggDbRep.h"
 
-static char const rcsid[] = "$Id: ggDbRep.c,v 1.3 2003/05/06 07:22:22 kate Exp $";
 
 struct altGraph *altGraphLoad(char **row)
 /* Load a altGraph from row fetched with select * from altGraph
  * from database.  Dispose of this with altGraphFree(). */
 {
 struct altGraph *ret;
 int sizeOne,i;
 char *s;
 
 AllocVar(ret);
 ret->vertexCount = sqlUnsigned(row[6]);
 ret->edgeCount = sqlUnsigned(row[10]);
 ret->mrnaRefCount = sqlSigned(row[13]);
 ret->id = sqlUnsigned(row[0]);
 ret->orientation = sqlSigned(row[1]);