X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=lib%2FObject%2FRemote%2FTied.pm;h=2e20570d6379a9ed1d8c682e3d11d396e54a9d2c;hp=af6f7fd5cada5dcdab3edbd41de14b6950a0df49;hb=bef36e73e4257b2ba8e59eb55661ffc51d8a620a;hpb=7790ca36241acfa9379cb2b89b68c9f4b0da2371 diff --git a/lib/Object/Remote/Tied.pm b/lib/Object/Remote/Tied.pm index af6f7fd..2e20570 100644 --- a/lib/Object/Remote/Tied.pm +++ b/lib/Object/Remote/Tied.pm @@ -1,21 +1,20 @@ package Object::Remote::Tied; -use strictures 1; +use strictures 1; #a proxied tied object just ties to the #proxy object that exists on the remote #side of the actual tied variable - when #creating the remote tied variable the proxy -#is passed to the constructor +#is passed to the constructor sub TIEHASH { - return $_[1]; + return $_[1]; } sub TIEARRAY { - return $_[1]; + return $_[1]; } - 1;