Просмотр исходного кода

Small improvement to Sessions.cleanup.

Martin Edenhofer 7 лет назад
Родитель
Сommit
10b11cb726
1 измененных файлов с 2 добавлено и 5 удалено
  1. 2 5
      lib/sessions.rb

+ 2 - 5
lib/sessions.rb

@@ -457,11 +457,8 @@ remove all session and spool messages
 =end
 
   def self.cleanup
-    Dir.foreach(@path) do |entry|
-      next if entry == '.'
-      next if entry == '..'
-      FileUtils.rm_rf entry
-    end
+    return true if !File.exist?(@path)
+    FileUtils.rm_rf @path
     true
   end