diff --git a/filters/matcher.go b/filters/matcher.go index 202c15a73..8b0a82a1c 100644 --- a/filters/matcher.go +++ b/filters/matcher.go @@ -23,10 +23,6 @@ type abstractMatcher struct { Operator string } -func (matcher *abstractMatcher) setOperator(operator string) { - matcher.Operator = operator -} - func (matcher *abstractMatcher) GetOperator() string { return matcher.Operator }