aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/InterfaceModel
diff options
context:
space:
mode:
authorlbr <lbr@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2009-04-19 10:08:52 +0000
committerlbr <lbr@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2009-04-19 10:08:52 +0000
commit4d0bacd2bfacba04809dc0943625ad61a6d46b6c (patch)
tree5c3a5b305f638c82e94b9073d850bb023b0a2c65 /lib/Reaction/InterfaceModel
parentaeb875d9a29d4930381f583d1620f3b8e31d1875 (diff)
downloadreaction-4d0bacd2bfacba04809dc0943625ad61a6d46b6c.tar.gz
reaction-4d0bacd2bfacba04809dc0943625ad61a6d46b6c.zip
Get rid of deprecated methods in Class::MOP (and depend on newest Moose)
Diffstat (limited to 'lib/Reaction/InterfaceModel')
-rw-r--r--lib/Reaction/InterfaceModel/Reflector/DBIC.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Reaction/InterfaceModel/Reflector/DBIC.pm b/lib/Reaction/InterfaceModel/Reflector/DBIC.pm
index 230683a..38d9025 100644
--- a/lib/Reaction/InterfaceModel/Reflector/DBIC.pm
+++ b/lib/Reaction/InterfaceModel/Reflector/DBIC.pm
@@ -503,7 +503,7 @@ sub reflect_source_object {
# attributes => [{...}] #DWIM, treat as [qr/./, {...} ]
# attributes => [[-exclude => ...]] #DWIM, treat as [qr/./, [-exclude => ...]]
my $attr_haystack =
- [ map { $_->name } $source_class->meta->compute_all_applicable_attributes ];
+ [ map { $_->name } $source_class->meta->get_all_attributes ];
if(!defined $attr_rules){
$attr_rules = [qr/./];