fix #144
Showing
1 changed file
with
4 additions
and
4 deletions
| ... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment