a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/expData.c src/hg/lib/expData.c
index 87f6cda..b44a8a5 100644
--- src/hg/lib/expData.c
+++ src/hg/lib/expData.c
@@ -1,26 +1,25 @@
 /* expData.c was originally generated by the autoSql program, which also 
  * generated expData.h and expData.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 "expData.h"
 
-static char const rcsid[] = "$Id: expData.c,v 1.6 2006/07/21 17:45:52 aamp Exp $";
 
 struct expData *expDataLoad(char **row)
 /* Load a expData from row fetched with select * from expData
  * from database.  Dispose of this with expDataFree(). */
 {
 struct expData *ret;
 int sizeOne;
 
 AllocVar(ret);
 ret->expCount = sqlUnsigned(row[1]);
 ret->name = cloneString(row[0]);
 sqlFloatDynamicArray(row[2], &ret->expScores, &sizeOne);
 assert(sizeOne == ret->expCount);
 return ret;
 }