]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces from app/models/attachment.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 26 Feb 2012 10:16:09 +0000 (10:16 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 26 Feb 2012 10:16:09 +0000 (10:16 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9012 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/attachment.rb

index 6efe320720d17ae98f82981abdcc9a5ff488a4dd..c9c33e3d41dbd73b15c8a4eea084dd5e219a056b 100644 (file)
@@ -1,5 +1,5 @@
 # Redmine - project management software
-# Copyright (C) 2006-2011  Jean-Philippe Lang
+# Copyright (C) 2006-2012  Jean-Philippe Lang
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
@@ -89,7 +89,7 @@ class Attachment < ActiveRecord::Base
       end
     end
   end
-  
+
   def file
     nil
   end
@@ -197,7 +197,7 @@ class Attachment < ActiveRecord::Base
   end
 
   def self.latest_attach(attachments, filename)
-    attachments.sort_by(&:created_on).reverse.detect { 
+    attachments.sort_by(&:created_on).reverse.detect {
       |att| att.filename.downcase == filename.downcase
      }
   end