]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces except SQL from app/models/issue.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 21 Aug 2011 08:46:10 +0000 (08:46 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 21 Aug 2011 08:46:10 +0000 (08:46 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6516 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/issue.rb

index ccd326552b001f9ad1937a49e7cdf066def3f80b..aef3ddb310cf24d2d18f78d3e3db9cd9efa5e1ef 100644 (file)
@@ -229,7 +229,7 @@ class Issue < ActiveRecord::Base
     @custom_field_values = nil
     result
   end
-  
+
   def description=(arg)
     if arg.is_a?(String)
       arg = arg.gsub(/(\r\n|\n|\r)/, "\r\n")
@@ -510,7 +510,7 @@ class Issue < ActiveRecord::Base
   def relations
     @relations ||= (relations_from + relations_to).sort
   end
-  
+
   # Preloads relations for a collection of issues
   def self.load_relations(issues)
     if issues.any?
@@ -520,7 +520,7 @@ class Issue < ActiveRecord::Base
       end
     end
   end
-  
+
   # Finds an issue relation given its id.
   def find_relation(relation_id)
     IssueRelation.find(relation_id, :conditions => ["issue_to_id = ? OR issue_from_id = ?", id, id])
@@ -850,7 +850,7 @@ class Issue < ActiveRecord::Base
       end
     end
   end
-  
+
   # Callback on attachment deletion
   def attachment_added(obj)
     if @current_journal && !obj.new_record?