a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/nibTwo.c src/lib/nibTwo.c
index 530b44e..1d918f5 100644
--- src/lib/nibTwo.c
+++ src/lib/nibTwo.c
@@ -1,26 +1,25 @@
 /* nibTwo - Something to let you transparently access either
  * .2bit or .nib files. */
 
 #include "common.h"
 #include "hash.h"
 #include "dnaseq.h"
 #include "nib.h"
 #include "twoBit.h"
 #include "nibTwo.h"
 
-static char const rcsid[] = "$Id: nibTwo.c,v 1.6 2010/03/23 17:09:47 markd Exp $";
 
 struct nibTwoCache *nibTwoCacheNew(char *pathName)
 /* Get something that will more or less transparently get sequence from 
  * nib files or .2bit. */ 
 {
 struct nibTwoCache *ntc;
 AllocVar(ntc);
 ntc->pathName = cloneString(pathName);
 ntc->isTwoBit = twoBitIsFile(pathName);
 if (ntc->isTwoBit)
     ntc->tbf = twoBitOpen(pathName);
 else
     ntc->nibHash = newHash(10);
 return ntc;
 }