Remove unused code

setOperator is no longer used, remove it as it's dangerous and useless
This commit is contained in:
Łukasz Mierzwa
2017-05-09 17:49:24 +01:00
parent 25d457b274
commit 37304d615a

View File

@@ -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
}