From: Dave Rolsky Date: Sat, 28 Aug 2010 15:40:32 +0000 (-0500) Subject: Comment out alias/excludes warnings for 1.12 release X-Git-Tag: 1.12~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a1224bfcd884034efdee87d80f8779b62f6b2f9b;p=gitmo%2FMoose.git Comment out alias/excludes warnings for 1.12 release --- diff --git a/lib/Moose/Meta/Role/Application.pm b/lib/Moose/Meta/Role/Application.pm index d71c6bd..8ac95f2 100644 --- a/lib/Moose/Meta/Role/Application.pm +++ b/lib/Moose/Meta/Role/Application.pm @@ -24,11 +24,11 @@ sub new { my ($class, %params) = @_; if ( exists $params{excludes} || exists $params{alias} ) { - Moose::Deprecated::deprecated( - feature => 'alias or excludes', - message => - "The alias and excludes options for role application have been renamed -alias and -excludes" - ); + # Moose::Deprecated::deprecated( + # feature => 'alias or excludes', + # message => + # "The alias and excludes options for role application have been renamed -alias and -excludes" + # ); } if ( exists $params{excludes} && !exists $params{'-excludes'} ) {