From c42d8b8e73f2d2f41fa60973f37b191094034bd7 Mon Sep 17 00:00:00 2001 From: Eric Tune Date: Thu, 14 Aug 2014 10:53:36 -0700 Subject: [PATCH] Return not required after panic. Suggested by "go vet". --- pkg/httplog/log.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/httplog/log.go b/pkg/httplog/log.go index ea8364a3a2d..eb428e57f49 100644 --- a/pkg/httplog/log.go +++ b/pkg/httplog/log.go @@ -93,7 +93,6 @@ func LogOf(w http.ResponseWriter) *respLogger { return rl } panic("Logger not installed yet!") - return nil } // Unlogged returns the original ResponseWriter, or w if it is not our inserted logger.