X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=c97728838e7cf676ef152d73a816b3dbbd4ab604;hb=ce4c07df9e268eb44c9b1d132db2eef3d8ec55bf;hp=2c635b3994ae0d9ed829c9b3b9e703af6f7e9fb6;hpb=0f6e30eee38ebbf4e1b636cdfbea06333741685a;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 2c635b3..c977288 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -16,18 +16,18 @@ sub component_base_class { 'DBIx::Class' } $VERSION = '0.07999_01'; sub MODIFY_CODE_ATTRIBUTES { - my ($class,$code,@attrs) = @_; - $class->mk_classdata('__attr_cache' => {}) - unless $class->can('__attr_cache'); - $class->__attr_cache->{$code} = [@attrs]; - return (); + my ($class,$code,@attrs) = @_; + $class->mk_classdata('__attr_cache' => {}) + unless $class->can('__attr_cache'); + $class->__attr_cache->{$code} = [@attrs]; + return (); } sub _attr_cache { - my $self = shift; - my $cache = $self->can('__attr_cache') ? $self->__attr_cache : {}; - my $rest = eval { $self->next::method }; - return $@ ? $cache : { %$cache, %$rest }; + my $self = shift; + my $cache = $self->can('__attr_cache') ? $self->__attr_cache : {}; + my $rest = eval { $self->next::method }; + return $@ ? $cache : { %$cache, %$rest }; } 1; @@ -180,65 +180,70 @@ andyg: Andy Grundman ank: Andres Kievsky +ash: Ash Berlin + blblack: Brandon L. Black bluefeet: Aran Deltac -LTJake: Brian Cassidy +captainL: Luke Saunders + +castaway: Jess Robinson claco: Christopher H. Laco clkao: CL Kao -typester: Daisuke Murase - dkubb: Dan Kubb -Numa: Dan Sully +draven: Marcus Ramberg dwc: Daniel Westermann-Clark -ningu: David Kamholz - -jesper: Jesper Krogh +dyfrgi: Michael Leuchtenburg -castaway: Jess Robinson +gphat: Cory G Watson -quicksilver: Jules Bean +jesper: Jesper Krogh jguenther: Justin Guenther -captainL: Luke Saunders +konobi: Scott McWhirter -draven: Marcus Ramberg +LTJake: Brian Cassidy nigel: Nigel Metheringham +ningu: David Kamholz + +Numa: Dan Sully + paulm: Paul Makepeace +penguin: K J Cheetham + phaylon: Robert Sedlacek -sc_: Just Another Perl Hacker +quicksilver: Jules Bean -konobi: Scott McWhirter +sc_: Just Another Perl Hacker scotty: Scotty Allen sszabo: Stephan Szabo -zamolxes: Bogdan Lucaciu - Todd Lipcon +typester: Daisuke Murase + wdh: Will Hawes -gphat: Cory G Watson +willert: Sebastian Willert -dyfrgi: Michael Leuchtenmurg +zamolxes: Bogdan Lucaciu =head1 LICENSE You may distribute this code under the same terms as Perl itself. =cut -