Remove unnecessary receiver variable

This commit is contained in:
some 2024-10-10 15:39:39 -04:00
parent 7280eed20c
commit d0004bba70
Signed by: some
GPG Key ID: 65D0589220B9BFC8

View File

@ -59,7 +59,7 @@ type DefaultErrorHandler struct {
DefaultError
}
func (eh *DefaultErrorHandler) Error(e Error) Error {
func (*DefaultErrorHandler) Error(e Error) Error {
return &DefaultErrorHandler{DefaultError: e.(DefaultError)}
}