1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-12 02:21:35 +00:00

fix source indent of app/models/changeset.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20084 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-09-26 15:02:10 +00:00
parent d208cb6421
commit 07fc4b1634

View 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