bbef2131 by astaxie

fix #144

1 parent bc060c95
...@@ -543,10 +543,10 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request) ...@@ -543,10 +543,10 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
543 method = vc.MethodByName("Render") 543 method = vc.MethodByName("Render")
544 method.Call(in) 544 method.Call(in)
545 } 545 }
546 method = vc.MethodByName("Finish")
547 method.Call(in)
548 } 546 }
549 } 547 }
548 method = vc.MethodByName("Finish")
549 method.Call(in)
550 method = vc.MethodByName("Destructor") 550 method = vc.MethodByName("Destructor")
551 method.Call(in) 551 method.Call(in)
552 } 552 }
...@@ -607,9 +607,9 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request) ...@@ -607,9 +607,9 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
607 method = vc.MethodByName("Render") 607 method = vc.MethodByName("Render")
608 method.Call(in) 608 method.Call(in)
609 } 609 }
610 method = vc.MethodByName("Finish")
611 method.Call(in)
612 } 610 }
611 method = vc.MethodByName("Finish")
612 method.Call(in)
613 method = vc.MethodByName("Destructor") 613 method = vc.MethodByName("Destructor")
614 method.Call(in) 614 method.Call(in)
615 // set find 615 // set find
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!