Skip to content

Commit

Permalink
Remove unnecessary throws clause
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorgerhardt committed Oct 4, 2024
1 parent 434dcf9 commit cd7840c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ private Bundle getBundle (Request req, Response res) {
* and is considered the definitive source of truth. The entry in the database is a newer addition and has only
* been around since September 2024.
*/
private TransportNetworkConfig getBundleConfig(Request request, Response res) throws IOException {
private TransportNetworkConfig getBundleConfig(Request request, Response res) {
// Unfortunately this mimics logic in TransportNetworkCache. Deduplicate in a static utility method?
String id = GTFSCache.cleanId(request.params("_id"));
FileStorageKey key = new FileStorageKey(BUNDLES, id, "json");
Expand Down

0 comments on commit cd7840c

Please sign in to comment.