Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removing redundant boolean
Browse files Browse the repository at this point in the history
Signed-off-by: chaosinthecrd <[email protected]>
ChaosInTheCRD committed Sep 4, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 3c3f4af commit cf7190c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions source/memory.go
Original file line number Diff line number Diff line change
@@ -32,7 +32,6 @@ func (e ErrDuplicateReference) Error() string {
}

type MemorySource struct {
searched bool
envelopesByReference map[string]CollectionEnvelope
referencesByCollectionName map[string][]string
subjectDigestsByReference map[string]map[string]struct{}
@@ -41,7 +40,6 @@ type MemorySource struct {

func NewMemorySource() *MemorySource {
return &MemorySource{
searched: false,
envelopesByReference: make(map[string]CollectionEnvelope),
referencesByCollectionName: make(map[string][]string),
subjectDigestsByReference: make(map[string]map[string]struct{}),

0 comments on commit cf7190c

Please sign in to comment.