mirror of
https://github.com/MontFerret/ferret.git
synced 2025-08-13 19:52:52 +02:00
Fix unused-parameter errors
This commit is contained in:
@@ -14,7 +14,7 @@ type baseOperator struct {
|
||||
right core.Expression
|
||||
}
|
||||
|
||||
func (operator *baseOperator) Exec(ctx context.Context, scope *core.Scope) (core.Value, error) {
|
||||
func (operator *baseOperator) Exec(_ context.Context, _ *core.Scope) (core.Value, error) {
|
||||
return values.None, core.ErrInvalidOperation
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user