X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FObject%2FRemote%2FCodeContainer.pm;h=4f293c86ce5cd7819e5514bfdb80efba078242c4;hb=1673aa538a25ee18a7e8b2af7d039f989f71c737;hp=948e63baed76aecc1d92c2d784d4fbb251edae00;hpb=fe6c9a7f0f8b12f9424ed3aa7ea6c4a783581ce9;p=scpubgit%2FObject-Remote.git diff --git a/lib/Object/Remote/CodeContainer.pm b/lib/Object/Remote/CodeContainer.pm index 948e63b..4f293c8 100644 --- a/lib/Object/Remote/CodeContainer.pm +++ b/lib/Object/Remote/CodeContainer.pm @@ -4,6 +4,9 @@ use Moo; has code => (is => 'ro', required => 1); -sub call { shift->code->(@_) } +sub call { + my $self = shift; + $self->code->(@_) +} 1;