Stats implements baker.Filter.
()
| 44 | |
| 45 | // Stats implements baker.Filter. |
| 46 | func (v *NotNull) Stats() baker.FilterStats { |
| 47 | return baker.FilterStats{ |
| 48 | NumFilteredLines: atomic.LoadInt64(&v.numFilteredLines), |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | // Process implements baker.Filter. |
| 53 | func (v *NotNull) Process(l baker.Record, next func(baker.Record)) { |
nothing calls this directly
no outgoing calls
no test coverage detected