From: Michael G Schwern Date: Tue, 4 Nov 2008 18:26:29 +0000 (+0000) Subject: Normalize indentation X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=478e7094c198ab76839b88753ce540ca98fdb839;p=dbsrgits%2FDBIx-Class-Historic.git Normalize indentation --- diff --git a/lib/DBIx/Class/CDBICompat/AccessorMapping.pm b/lib/DBIx/Class/CDBICompat/AccessorMapping.pm index a8f03e6..8b15db4 100644 --- a/lib/DBIx/Class/CDBICompat/AccessorMapping.pm +++ b/lib/DBIx/Class/CDBICompat/AccessorMapping.pm @@ -1,26 +1,26 @@ package # hide from PAUSE Indexer - DBIx::Class::CDBICompat::AccessorMapping; + DBIx::Class::CDBICompat::AccessorMapping; use strict; use warnings; sub mk_group_accessors { - my ($class, $group, @cols) = @_; - - foreach my $col (@cols) { - my $ro_meth = $class->accessor_name_for($col); - my $wo_meth = $class->mutator_name_for($col); - - # warn "class: $class / col: $col / ro: $ro_meth / wo: $wo_meth\n"; - if ($ro_meth eq $wo_meth or # they're the same - $wo_meth eq $col) # or only the accessor is custom - { - $class->next::method($group => [ $ro_meth => $col ]); - } else { - $class->mk_group_ro_accessors($group => [ $ro_meth => $col ]); - $class->mk_group_wo_accessors($group => [ $wo_meth => $col ]); + my ($class, $group, @cols) = @_; + + foreach my $col (@cols) { + my $ro_meth = $class->accessor_name_for($col); + my $wo_meth = $class->mutator_name_for($col); + + # warn "class: $class / col: $col / ro: $ro_meth / wo: $wo_meth\n"; + if ($ro_meth eq $wo_meth or # they're the same + $wo_meth eq $col) # or only the accessor is custom + { + $class->next::method($group => [ $ro_meth => $col ]); + } else { + $class->mk_group_ro_accessors($group => [ $ro_meth => $col ]); + $class->mk_group_wo_accessors($group => [ $wo_meth => $col ]); + } } - } } @@ -44,16 +44,16 @@ sub mutator_name_for { sub new { - my ($class, $attrs, @rest) = @_; - $class->throw_exception( "create needs a hashref" ) unless ref $attrs eq 'HASH'; - foreach my $col ($class->columns) { - my $acc = $class->accessor_name_for($col); - $attrs->{$col} = delete $attrs->{$acc} if exists $attrs->{$acc}; - - my $mut = $class->mutator_name_for($col); - $attrs->{$col} = delete $attrs->{$mut} if exists $attrs->{$mut}; - } - return $class->next::method($attrs, @rest); + my ($class, $attrs, @rest) = @_; + $class->throw_exception( "create needs a hashref" ) unless ref $attrs eq 'HASH'; + foreach my $col ($class->columns) { + my $acc = $class->accessor_name_for($col); + $attrs->{$col} = delete $attrs->{$acc} if exists $attrs->{$acc}; + + my $mut = $class->mutator_name_for($col); + $attrs->{$col} = delete $attrs->{$mut} if exists $attrs->{$mut}; + } + return $class->next::method($attrs, @rest); } 1;