Commit 01f0ce40d8b4ea6c887bedc2cd4afc56e038491e
- Diff rendering mode:
- inline
- side by side
lib/HTTP/Message.pm
(1 / 1)
|   | |||
| 410 | 410 | # We create the function here so that it will not need to be | |
| 411 | 411 | # autoloaded the next time. | |
| 412 | 412 | no strict 'refs'; | |
| 413 | *$method = eval "sub { shift->{'_headers'}->$method(\@_) }"; | ||
| 413 | *$method = sub { shift->{'_headers'}->$method(@_) }; | ||
| 414 | 414 | goto &$method; | |
| 415 | 415 | } | |
| 416 | 416 |

