From: Dave Rolsky Date: Sun, 5 Apr 2009 16:31:35 +0000 (-0500) Subject: Doh, had the wrong method name in the deprecation warning X-Git-Tag: 0.80_01~9 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7c38ac19ef7f318f4d1134201ac004672b726668;p=gitmo%2FClass-MOP.git Doh, had the wrong method name in the deprecation warning --- diff --git a/lib/Class/MOP/Class.pm b/lib/Class/MOP/Class.pm index 2cbf3cc..d35f959 100644 --- a/lib/Class/MOP/Class.pm +++ b/lib/Class/MOP/Class.pm @@ -926,7 +926,7 @@ sub get_all_attributes { } sub compute_all_applicable_attributes { - warn 'The construct_class_instance method has been deprecated.' + warn 'The compute_all_applicable_attributes method has been deprecated.' . " Use get_all_attributes instead.\n"; shift->get_all_attributes;