remove useless test
Jesse Luehrs [Fri, 25 Jun 2010 06:06:53 +0000 (01:06 -0500)]
lib/Moose/Meta/Attribute.pm

index bbf38e7..b8ca6ff 100644 (file)
@@ -379,7 +379,7 @@ sub initialize_from_params {
     return unless defined $init_arg;
     # try to fetch the init arg from the %params ...
 
-    if ( defined($init_arg) and exists $params->{$init_arg}) {
+    if (exists $params->{$init_arg}) {
         $self->_set_initial_slot_value($meta_instance, $instance, $params->{$init_arg});
         return 1;
     }