()
| 388 | } |
| 389 | |
| 390 | func (c *ControllerActivator) activate() { |
| 391 | if c.Activated() { |
| 392 | return |
| 393 | } |
| 394 | |
| 395 | c.parseMethods() |
| 396 | c.parseHTTPErrorHandler() |
| 397 | } |
| 398 | |
| 399 | func (c *ControllerActivator) parseHTTPErrorHandler() { |
| 400 | if m, ok := c.Type.MethodByName(handleHTTPErrorMethodName); ok { |
no test coverage detected