fix comments that were in wrong spot from refactoring
[scpubgit/Object-Remote.git] / lib / Object / Remote / CodeContainer.pm
index 948e63b..4f293c8 100644 (file)
@@ -4,6 +4,9 @@ use Moo;
 
 has code => (is => 'ro', required => 1);
 
-sub call { shift->code->(@_) }
+sub call {
+  my $self = shift;
+  $self->code->(@_)
+}
 
 1;