return makeCatalogComponent(table.getCatalog());
}
if ("text/csv".equalsIgnoreCase(format)) {
// CSV formatted table
StarTable starTable = new CsvStarTable(new URLDataSource(url));
VoTable table = VoTable.createVoTable(starTable, null, Integer.MAX_VALUE);
table.setCatalog(new VoCatalog(table));
return makeCatalogComponent(table.getCatalog());
}