filter/filters_circleci.go fix type to NoOp

This commit is contained in:
Ella Pietraroia 2019-12-31 16:10:09 +10:30
parent f06d9641c8
commit ab211be6eb
1 changed files with 1 additions and 1 deletions

View File

@ -36,6 +36,6 @@ func NewMOGFilter(dst io.WriteCloser, area, threshold float64, history, kernelSi
return &NoOp{dst: dst}
}
func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSize int, debug bool) *KNNFilter {
func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSize int, debug bool) *NoOp {
return &NoOp{dst: dst}
}