d0d1e8ddf27660a72acd7ad55239a03cf978c4ab braney Mon Apr 29 14:08:25 2013 -0700 remove a parameter to a library routine that none of the callers was using. for Angie diff --git src/hg/inc/hubConnect.h src/hg/inc/hubConnect.h index e3290e4..c24170b 100644 --- src/hg/inc/hubConnect.h +++ src/hg/inc/hubConnect.h @@ -117,31 +117,30 @@ * the cart variable the references this hub */ void hubCheckForNew( struct cart *cart); /* see if the user just typed in a new hub url, add to cart and hubStatus */ struct trackHub *trackHubFromId(unsigned hubId); /* Given a hub ID number, return corresponding trackHub structure. * ErrAbort if there's a problem. */ void hubUpdateStatus(char *errorMessage, struct hubConnectStatus *hub); /* set the error message in the hubStatus table */ boolean trackHubHasDatabase(struct trackHub *hub, char *database) ; /* Return TRUE if hub has contents for database */ -struct trackDb *hubAddTracks(struct hubConnectStatus *hub, char *database, - struct trackHub **pHubList); +struct trackDb *hubAddTracks(struct hubConnectStatus *hub, char *database); /* Load up stuff from data hub and append to list. The hubUrl points to * a trackDb.ra format file. */ struct hubConnectStatus *hubConnectLoadHubs(struct cart *cart); /* load the track data hubs. Set a static global to remember them */ struct hubConnectStatus *hubConnectGetHubs(); /* return the static global to the track data hubs */ -struct trackDb *hubCollectTracks( char *database, struct trackHub **pHubList, struct grp **pGroupList); +struct trackDb *hubCollectTracks( char *database, struct grp **pGroupList); /* Generate trackDb structures for all the tracks in attached hubs. * Make grp structures for each hub. */ #endif /* HUBCONNECT_H */