Skip to content

Commit

Permalink
Remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
neekolas committed Oct 24, 2023
1 parent 293053a commit 8849ad5
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions pkg/api/message/v3/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 8849ad5

Please sign in to comment.