cleanup trailing whitespace ugliness
[scpubgit/Object-Remote.git] / lib / Object / Remote / Tied.pm
index 0d94fd4..2e20570 100644 (file)
@@ -1,12 +1,12 @@
 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];
@@ -16,6 +16,5 @@ sub TIEARRAY {
   return $_[1];
 }
 
-
 1;