[Catalyst-commits] r9727 - Catalyst-Runtime/5.80/trunk/lib
marcus at dev.catalyst.perl.org
marcus at dev.catalyst.perl.org
Sat Apr 18 14:41:46 GMT 2009
Author: marcus
Date: 2009-04-18 15:41:45 +0100 (Sat, 18 Apr 2009)
New Revision: 9727
Modified:
Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm
Log:
Remove commented out incorrect deprecations
Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm 2009-04-18 12:37:16 UTC (rev 9726)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm 2009-04-18 14:41:45 UTC (rev 9727)
@@ -43,11 +43,9 @@
sub comp { shift->component(@_) }
sub req {
- # carp "the use of req() is deprecated in favour of request()";
my $self = shift; return $self->request(@_);
}
sub res {
- # carp "the use of res() is deprecated in favour of response()";
my $self = shift; return $self->response(@_);
}
More information about the Catalyst-commits
mailing list