Skip to content

Commit

Permalink
fix: delete unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
aripalo committed May 12, 2022
1 parent 7dc4d57 commit 7e2bf64
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions internal/credentials/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,3 @@ func (c *Credentials) readFromCache() error {

return nil
}

// DeleteFromCache deletes the cached response cache database
func (c *Credentials) deleteFromCache() error {
key, err := resolveKey(c.cfg.ProfileName, c.cfg.Checksum)
if err != nil {
return err
}

return c.repo.Delete(key)
}

0 comments on commit 7e2bf64

Please sign in to comment.