From d943d16d522cefb97ae2735f1e3dd8b41e6d8641 Mon Sep 17 00:00:00 2001 From: ziyel Date: Wed, 10 Jun 2015 21:26:04 +0800 Subject: [PATCH] gofmt --- router.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/router.go b/router.go index 232f67d2..35b442ab 100644 --- a/router.go +++ b/router.go @@ -612,9 +612,9 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request) if l, ok := p.filters[pos]; ok { for _, filterR := range l { if ok, p := filterR.ValidRouter(urlPath); ok { - for k, v := range context.Input.Params { - p[k] = v - } + for k, v := range context.Input.Params { + p[k] = v + } context.Input.Params = p filterR.filterFunc(context) if filterR.returnOnOutput && w.started {