]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mailshears/filesystem.rb
Whitespace/comment cleanup.
[mailshears.git] / lib / mailshears / filesystem.rb
index 473a1ed16a46032a1c4c6f37be56a8bd81f6a9e3..72ff901dd1e0dc602369c6a795a13d0164ab30d5 100644 (file)
@@ -3,7 +3,7 @@ class Filesystem
   def self.begins_with_dot(path)
     return (path[0..0] == '.')
   end
-  
+
   def self.get_subdirs(dir)
     subdirs = []
 
@@ -15,8 +15,8 @@ class Filesystem
         end
       end
     end
-    
+
     return subdirs
   end
-  
+
 end