()
| 73 | } |
| 74 | |
| 75 | func (f *Dedup) Stats() baker.FilterStats { |
| 76 | return baker.FilterStats{ |
| 77 | NumFilteredLines: atomic.LoadInt64(&f.numFilteredLines), |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | func (f *Dedup) Process(l baker.Record, next func(baker.Record)) { |
| 82 | key := f.constructKey(l) |
nothing calls this directly
no outgoing calls
no test coverage detected