Skip to content

Commit

Permalink
Merge branch 'master' into 1561-web-ui-tooltips-in-validator-report-b…
Browse files Browse the repository at this point in the history
…roken
  • Loading branch information
davidgamez authored Sep 20, 2023
2 parents d6381e1 + 7264f75 commit bb364ec
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import com.google.common.flogger.FluentLogger;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
Expand Down Expand Up @@ -72,6 +73,10 @@ public GtfsFeedLoader(
}
}

public Collection<GtfsTableDescriptor<?>> getTableDescriptors() {
return Collections.unmodifiableCollection(tableDescriptors.values());
}

public String listTableDescriptors() {
return String.join(" ", tableDescriptors.keySet());
}
Expand Down

0 comments on commit bb364ec

Please sign in to comment.