a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgGeneRing/interaction.c src/hg/hgGeneRing/interaction.c
index 22851a0..0a760e0 100644
--- src/hg/hgGeneRing/interaction.c
+++ src/hg/hgGeneRing/interaction.c
@@ -1,26 +1,25 @@
 /* interaction.c was originally generated by the autoSql program, which also 
  * generated interaction.h and interaction.sql.  This module links the database and
  * the RAM representation of objects. */
 
 #include "common.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "jksql.h"
 #include "interaction.h"
 
-static char const rcsid[] = "$Id: interaction.c,v 1.1 2005/02/13 10:46:42 galt Exp $";
 
 void interactionStaticLoad(char **row, struct interaction *ret)
 /* Load a row from interaction table into ret.  The contents of ret will
  * be replaced at the next call to this function. */
 {
 
 ret->fromX = row[0];
 ret->toY = row[1];
 ret->score = atof(row[2]);
 }
 
 struct interaction *interactionLoad(char **row)
 /* Load a interaction from row fetched with select * from interaction
  * from database.  Dispose of this with interactionFree(). */
 {