54cccf0e82a201f625bd5e4fcd90b87ffb6ba593
hiram
  Mon Jul 1 14:13:36 2019 -0700
eliminate one of the isSupportedType definitions refs #23760

diff --git src/hg/hubApi/dataApi.h src/hg/hubApi/dataApi.h
index b8e64df..df5312b 100644
--- src/hg/hubApi/dataApi.h
+++ src/hg/hubApi/dataApi.h
@@ -110,33 +110,30 @@
 
 extern boolean measureTiming;	/* set by CGI parameters */
 
 /*  functions in hubApi.c */
 struct hubPublic *hubPublicDbLoadAll();
 
 struct dbDb *ucscDbDb();
 /* return the dbDb table as an slList */
 
 char *verifyLegalArgs(char *validArgList[]);
 /* validArgList is an array of strings for valid arguments
  * returning string of any other arguments not on that list found in
  * cgiVarList(), NULL when none found.
  */
 
-boolean isSupportedType(char *type);
-/* is given type in the supportedTypes list ? */
-
 /* ######################################################################### */
 /*  functions in apiUtils.c */
 
 void startProcessTiming();
 /* for measureTiming, beginning processing */
 
 void apiFinishOutput(int errorCode, char *errorString, struct jsonWrite *jw);
 /* finish json output, potential output an error code other than 200 */
 
 void apiErrAbort(int errorCode, char *errString, char *format, ...);
 /* Issue an error message in json format, and exit(0) */
 
 struct jsonWrite *apiStartOutput();
 /* begin json output with standard header information for all requests */