fix: remove unused function

This commit is contained in:
Kjell Winblad 2023-10-17 09:35:17 +02:00 committed by Zaiming (Stone) Shi
parent 38f5c7dcf4
commit 2249a2cb50
1 changed files with 0 additions and 3 deletions

View File

@ -1005,9 +1005,6 @@ bin(Bin) when is_binary(Bin) -> Bin;
bin(Str) when is_list(Str) -> list_to_binary(Str);
bin(Atom) when is_atom(Atom) -> atom_to_binary(Atom, utf8).
is_bridge_v2_id(<<"bridge_v2:", _/binary>>) -> true;
is_bridge_v2_id(_) -> false.
extract_connector_id_from_bridge_v2_id(Id) ->
case binary:split(Id, <<":">>, [global]) of
[<<"bridge_v2">>, _Type, _Name, <<"connector">>, ConnectorType, ConnecorName] ->