a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/phyloTree.c src/lib/phyloTree.c
index db5376d..0c49718 100644
--- src/lib/phyloTree.c
+++ src/lib/phyloTree.c
@@ -1,21 +1,20 @@
 #include "common.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "phyloTree.h"
 
-static char const rcsid[] = "$Id: phyloTree.c,v 1.11 2009/06/24 03:25:31 galt Exp $";
 
 struct phyloTree *phyloReadTree(struct lineFile *lf)
 /* reads a phyloTree from lineFile (first line only) */
 {
 struct phyloTree *tree = NULL;
 char *ptr;
 int len;
 
 if (lineFileNext(lf, &ptr, &len) && (len > 0))
     tree = phyloParseString(ptr);
 
 return tree;
 }
 
 struct phyloTree *phyloOpenTree(char *fileName)