]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of app/models/changeset.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 26 Sep 2020 15:02:10 +0000 (15:02 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 26 Sep 2020 15:02:10 +0000 (15:02 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20084 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/changeset.rb

index e41aca6a114777cf9808068016779d9bc60c19a3..d35d387ef123a724a3f803a8728a9c356a3b71a8 100644 (file)
@@ -94,8 +94,8 @@ class Changeset < ActiveRecord::Base
 
   def before_create_cs
     self.committer = self.class.to_utf8(self.committer, repository.repo_log_encoding)
-    self.comments  = self.class.normalize_comments(
-                       self.comments, repository.repo_log_encoding)
+    self.comments =
+      self.class.normalize_comments(self.comments, repository.repo_log_encoding)
     self.user = repository.find_committer_user(self.committer)
   end