From ecd3f234f4e8f1fe2ea45a467f93bdc14cc26bb9 Mon Sep 17 00:00:00 2001 From: darkdrag00nv2 <122124396+darkdrag00nv2@users.noreply.github.com> Date: Sat, 2 Dec 2023 11:44:04 +0530 Subject: [PATCH] Remove unused variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bastian Müller --- runtime/sema/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/sema/errors.go b/runtime/sema/errors.go index 54cbdcaa2d..6baa7e0b8f 100644 --- a/runtime/sema/errors.go +++ b/runtime/sema/errors.go @@ -3746,7 +3746,7 @@ type InvalidTypeArgumentError struct { var _ SemanticError = &InvalidTypeArgumentError{} var _ errors.UserError = &InvalidTypeArgumentError{} -func (e *InvalidTypeArgumentError) isSemanticError() {} +func (InvalidTypeArgumentError) isSemanticError() {} func (*InvalidTypeArgumentError) IsUserError() {}