diff --git a/handler_with_error.go b/handler_with_error.go index 51d087b..957ef49 100644 --- a/handler_with_error.go +++ b/handler_with_error.go @@ -11,7 +11,6 @@ func HandlerWithError(handleFunc func(context.Context, *Conn, *Request) (result return &HandlerWithErrorConfigurer{handleFunc: handleFunc} } - // HandlerWithErrorConfigurer is a handler created by HandlerWithError. type HandlerWithErrorConfigurer struct { handleFunc func(context.Context, *Conn, *Request) (result interface{}, err error) diff --git a/jsonrpc2.go b/jsonrpc2.go index 594f754..908092a 100644 --- a/jsonrpc2.go +++ b/jsonrpc2.go @@ -691,4 +691,3 @@ func (v *anyValueWithExplicitNull) UnmarshalJSON(data []byte) error { *v = anyValueWithExplicitNull{} return json.Unmarshal(data, &v.value) } -