From 0f50d0d83e6ec71440460a82c2283c46ffa13ebd Mon Sep 17 00:00:00 2001 From: s3rj1k Date: Sun, 3 Nov 2019 21:41:16 +0200 Subject: [PATCH] fix File is not `goimports`-ed (#28) Signed-off-by: s3rj1k --- handler_with_error.go | 1 - jsonrpc2.go | 1 - 2 files changed, 2 deletions(-) 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) } -