From 643b4673f0a28b9f946c86bc0aa51a6e284ee72f Mon Sep 17 00:00:00 2001 From: Matthew Shanley Date: Wed, 29 Nov 2023 10:53:11 -0500 Subject: [PATCH] fix: Remove unused `combined_route?` function (#1808) This was added in PR #1099. The rest of the code added in that PR was later removed in PR #1146, but this function was missed. --- apps/routes/lib/route.ex | 7 ------- 1 file changed, 7 deletions(-) diff --git a/apps/routes/lib/route.ex b/apps/routes/lib/route.ex index a88f257450..360d7fa972 100644 --- a/apps/routes/lib/route.ex +++ b/apps/routes/lib/route.ex @@ -241,13 +241,6 @@ defmodule Routes.Route do def hidden?(%{id: "Boat-F3"}), do: true def hidden?(_), do: false - @doc """ - Determines if given route route is a blended one - """ - @spec combined_route?(t()) :: boolean - def combined_route?(%{id: "627"}), do: true - def combined_route?(_), do: false - @spec rail?(t()) :: boolean def rail?(route) do type_atom(route) in [:subway, :commuter_rail]