Make the deprecation warning for attributes match all other similar
Dave Rolsky [Sun, 5 Apr 2009 21:12:50 +0000 (16:12 -0500)]
warnings.

lib/Class/MOP/Method/Constructor.pm

index 65a3507..4891ef9 100644 (file)
@@ -73,8 +73,8 @@ sub _meta_instance {
 }
 
 sub attributes {
-    warn 'The attributes method is deprecated.'
-        . " Use _attributes instead.\n";
+    warn 'The attributes method has been made private.'
+        . " The public version is deprecated and will be removed in a future release.\n";
 
     return shift->_attributes;
 }