X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FObject%2FRemote%2FTied.pm;h=2e20570d6379a9ed1d8c682e3d11d396e54a9d2c;hb=4cef6a48c7132caae25207eed7a2105204ef6e61;hp=af6f7fd5cada5dcdab3edbd41de14b6950a0df49;hpb=7790ca36241acfa9379cb2b89b68c9f4b0da2371;p=scpubgit%2FObject-Remote.git 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;