INET connector
[scpubgit/Object-Remote.git] / lib / Object / Remote / Tied.pm
index af6f7fd..2e20570 100644 (file)
@@ -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;