diff --git a/go.mod b/go.mod index 75aa228..e78d691 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/jr-dev-league/go-router +module github.com/nolwn/go-router go 1.15 diff --git a/router.go b/router.go index 251da5c..a587b40 100644 --- a/router.go +++ b/router.go @@ -138,8 +138,6 @@ func (r Router) ServeHTTP(w http.ResponseWriter, req *http.Request) { } handler.ServeHTTP(w, req) - - return } // PathParams takes a path and returns the values for any path parameters diff --git a/router_test.go b/router_test.go index 3c845e2..f7ee167 100644 --- a/router_test.go +++ b/router_test.go @@ -344,6 +344,4 @@ func testOutcome(message string, t *testing.T) { } fmt.Printf("\t%s %s\n", status, message) - - return }