Fix linting errors.
This commit is contained in:
parent
0b8528ce6b
commit
ce3e6bfdf6
1 changed files with 2 additions and 1 deletions
|
@ -56,6 +56,7 @@ type ErrNotImplemented struct {
|
||||||
Message string
|
Message string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrNotImplemented implements the error interface.
|
||||||
func (e ErrNotImplemented) Error() string {
|
func (e ErrNotImplemented) Error() string {
|
||||||
if e.Message != "" {
|
if e.Message != "" {
|
||||||
return e.Message
|
return e.Message
|
||||||
|
@ -65,6 +66,6 @@ func (e ErrNotImplemented) Error() string {
|
||||||
|
|
||||||
// StatusCode implements the StatusCoder interface and returns the HTTP 501
|
// StatusCode implements the StatusCoder interface and returns the HTTP 501
|
||||||
// error.
|
// error.
|
||||||
func (s ErrNotImplemented) StatusCode() int {
|
func (e ErrNotImplemented) StatusCode() int {
|
||||||
return http.StatusNotImplemented
|
return http.StatusNotImplemented
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue