Moose compat: init_arg is not used for the hash key, name is
[gitmo/Mouse.git] / lib / Mouse / Object.pm
index fbd19ed..e72542c 100644 (file)
@@ -13,7 +13,7 @@ sub new {
     my $instance = bless {}, $class;
 
     for my $attribute (values %{ $class->meta->get_attribute_map }) {
-        my $key = $attribute->init_arg;
+        my $key = $attribute->name;
         my $default;
 
         if (!exists($args{$key})) {