Skip to content

Commit

Permalink
fix: Remove unused combined_route? function (#1808)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
arkadyan authored Nov 29, 2023
1 parent a06905f commit 643b467
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions apps/routes/lib/route.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 643b467

Please sign in to comment.