Author: schwern
Date: Thu Sep 18 04:05:37 2008
New Revision: 11811

Modified:
   Module-Build/trunk/lib/Module/Build/Base.pm

Log:
Tableify a ternary for easier reading.

Modified: Module-Build/trunk/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/trunk/lib/Module/Build/Base.pm (original)
+++ Module-Build/trunk/lib/Module/Build/Base.pm Thu Sep 18 04:05:37 2008
@@ -1851,9 +1851,9 @@
     if ($key eq 'config') {
       $self->config($_ => $val->{$_}) foreach keys %$val;
     } else {
-      my $add_to = ( $additive{$key} ? $self->{properties}{$key}
-                    : $self->valid_property($key) ? $self->{properties}
-                    : $self->{args});
+      my $add_to = $additive{$key}             ? $self->{properties}{$key} :
+                   $self->valid_property($key) ? $self->{properties}       :
+                   $self->{args}               ;
 
       if ($additive{$key}) {
        $add_to->{$_} = $val->{$_} foreach keys %$val;

Reply via email to