From 8849ad5ba3df3e7f46267583c694270d0d6196d3 Mon Sep 17 00:00:00 2001 From: Nicholas Molnar <65710+neekolas@users.noreply.github.com> Date: Tue, 24 Oct 2023 08:47:22 -0700 Subject: [PATCH] Remove unused function --- pkg/api/message/v3/service.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkg/api/message/v3/service.go b/pkg/api/message/v3/service.go index c0a64def..1cb45038 100644 --- a/pkg/api/message/v3/service.go +++ b/pkg/api/message/v3/service.go @@ -137,13 +137,3 @@ func (s *Service) RevokeInstallation(ctx context.Context, req *proto.RevokeInsta func (s *Service) GetIdentityUpdates(ctx context.Context, req *proto.GetIdentityUpdatesRequest) (*proto.GetIdentityUpdatesResponse, error) { return nil, status.Errorf(codes.Unimplemented, "unimplemented") } - -func indexOf(target string, ids []string) int { - for i, id := range ids { - if id == target { - return i - } - } - - return -1 -}