cleanup trailing whitespace ugliness
[scpubgit/Object-Remote.git] / lib / Object / Remote / Tied.pm
CommitLineData
7790ca36 1package Object::Remote::Tied;
2
55c0d020 3use strictures 1;
7790ca36 4
5#a proxied tied object just ties to the
6#proxy object that exists on the remote
7#side of the actual tied variable - when
8#creating the remote tied variable the proxy
55c0d020 9#is passed to the constructor
7790ca36 10
11sub TIEHASH {
37efeb68 12 return $_[1];
7790ca36 13}
14
15sub TIEARRAY {
37efeb68 16 return $_[1];
7790ca36 17}
18
7790ca36 191;
20