Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: FedeNQ <fedenahuel07@gmail.com>
  • Loading branch information
FedeNQ committed Aug 2, 2024
1 parent a4fe2fb commit 4247002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/agent/manager/cache/jwt_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ type JWTSVIDCache struct {
svids map[string]*client.JWTSVID
}

func (j *JWTSVIDCache) CountJWTSVIDs() int {
return len(j.svids)
func (c *JWTSVIDCache) CountJWTSVIDs() int {
return len(c.svids)
}

func NewJWTSVIDCache() *JWTSVIDCache {
Expand Down

0 comments on commit 4247002

Please sign in to comment.