Skip to content

Commit

Permalink
chore: Fix unused method receiver (RVV-B0013)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikawaha committed Feb 2, 2024
1 parent 60c7b8b commit 0364f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type testPerson struct {

type testHandler struct{}

func (t *testHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
func (*testHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
switch req.URL.Path {
case "/some":
http.SetCookie(w, &http.Cookie{
Expand Down

0 comments on commit 0364f75

Please sign in to comment.