ec9324f8ec605e7938c375403f0cfb2955728369
tdreszer
  Thu Dec 22 11:38:00 2011 -0800
Removing old ifdef.  No functional change here.
diff --git src/hg/lib/hdb.c src/hg/lib/hdb.c
index 62102a7..1f51887 100644
--- src/hg/lib/hdb.c
+++ src/hg/lib/hdb.c
@@ -3819,35 +3819,32 @@
 	if (tdbList != NULL)
 	    *tdbList = theTdbs;
 	}
     }
 else
     theTdbs = *tdbList;
 return rFindTrack(0, theTdbs, track);
 }
 
 struct trackDb *hTrackDbForTrackAndAncestors(char *db, char *track)
 /* Load trackDb object for a track. If need be grab its ancestors too.
  * This does not load children. hTrackDbForTrack will handle children, and
  * is actually faster if being called on lots of tracks.  This function
  * though is faster on one or two tracks. */
 {
-#define HGAPI_NEEDS_THIS
-#ifdef HGAPI_NEEDS_THIS
-if (isHubTrack(track))
+if (isHubTrack(track))    // hgApi needs this
     return tdbForTrack(db, track,NULL);
-#endif///def HGAPI_NEEDS_THIS
 
 struct sqlConnection *conn = hAllocConn(db);
 struct trackDb *tdb = loadTrackDbForTrack(conn, track);
 struct trackDb *ancestor = tdb;
 for (;;)
     {
     /* Get name of previous generation if any handling both
      * composite and supertrack ancestor tags. */
     char *parentTrack = NULL;
     char *parent = trackDbLocalSetting(ancestor, "parent");
     if (parent != NULL)
 	parentTrack = cloneFirstWord(parent);
     if (parentTrack == NULL)
         {
 	char *super = trackDbLocalSetting(ancestor, "superTrack");