6103cfb97b45dafba47eced8573b21179823a63e
hiram
  Fri Apr 5 15:49:35 2019 -0700
better html output refs #18869

diff --git src/hg/hubApi/list.c src/hg/hubApi/list.c
index 2dde1eb..6ead98c 100644
--- src/hg/hubApi/list.c
+++ src/hg/hubApi/list.c
@@ -1,19 +1,17 @@
 /* manage endpoint /list/ functions */
 
-/* test */
-
 #include "dataApi.h"
 
 static void hubPublicJsonData(struct jsonWrite *jw, struct hubPublic *el,
   int columnCount, char **columnNames)
 /* Print array data for one row from hubPublic table, order here
  * must be same as was stated in the columnName header element
  * This code should be in hg/lib/hubPublic.c (which does not exist)
  */
 {
 int i = 0;
 jsonWriteObjectStart(jw, NULL);
 jsonWriteString(jw, columnNames[i++], el->hubUrl);
 jsonWriteString(jw, columnNames[i++], el->shortLabel);
 jsonWriteString(jw, columnNames[i++], el->longLabel);
 jsonWriteString(jw, columnNames[i++], el->registrationTime);