Skip to content

Commit

Permalink
Remove unused parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
aptmcl committed Oct 31, 2024
1 parent a7f4d49 commit 5cf60fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Backends.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ reset_backend(b::RemoteBackend) =
end

export RemoteBackend, before_connecting, after_connecting, start_connection, failed_connecting, retry_connecting
before_connecting(b::RemoteBackend) = nothing
after_connecting(b::RemoteBackend) = nothing
before_connecting(::RemoteBackend) = nothing
after_connecting(::RemoteBackend) = nothing
failed_connecting(b::RemoteBackend) =
@error("Couldn't connect to $(b.name).")
retry_connecting(b::RemoteBackend) =
Expand Down

0 comments on commit 5cf60fd

Please sign in to comment.