Use add_attribute rather than _process_attribute to add attributes
Dave Rolsky [Mon, 21 Jan 2008 23:54:52 +0000 (23:54 +0000)]
lib/MooseX/ClassAttribute.pm

index d6170f9..b2e04dc 100644 (file)
@@ -34,7 +34,7 @@ sub process_class_attribute ## no critic RequireArgUnpacking
     my $container_pkg = _make_container_class( $caller, @parents );
     my $container_meta = $container_pkg->meta();
 
-    $container_meta->_process_attribute(@_);
+    $container_meta->add_attribute(@_);
 
     for my $meth ( grep { $_ ne 'instance' } $container_meta->get_method_list() )
     {