Skip to content

Commit 63c9a10

Browse files
committed
FFM-11660 Remove comments
1 parent 8eff45c commit 63c9a10

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

analyticsservice/safe_seen_targets_map.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,13 @@ type safeSeenTargets struct {
1212
limitExceeded atomic.Bool
1313
}
1414

15-
// Implements SafeSeenTargetsCache
1615
func newSafeSeenTargets(maxSize int) SafeSeenTargetsCache[string, bool] {
1716
return &safeSeenTargets{
1817
data: make(map[string]bool),
1918
maxSize: maxSize,
2019
}
2120
}
2221

23-
// The regular set method just calls SetWithLimit
2422
func (s *safeSeenTargets) set(key string, seen bool) {
2523
s.Lock()
2624
defer s.Unlock()

0 commit comments

Comments
 (0)