From 59dd9ec091279a210234ed7dbb7ab6dfdbc7b39c Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Wed, 9 Oct 2019 07:39:28 +0000 Subject: code cleanup: rubocop: fix Layout/IndentationConsistency in app/models/attachment.rb git-svn-id: http://svn.redmine.org/redmine/trunk@18640 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/attachment.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'app/models') diff --git a/app/models/attachment.rb b/app/models/attachment.rb index 0b151dabb..e5adbb236 100644 --- a/app/models/attachment.rb +++ b/app/models/attachment.rb @@ -87,14 +87,14 @@ class Attachment < ActiveRecord::Base def file=(incoming_file) unless incoming_file.nil? @temp_file = incoming_file - if @temp_file.respond_to?(:original_filename) - self.filename = @temp_file.original_filename - self.filename.force_encoding("UTF-8") - end - if @temp_file.respond_to?(:content_type) - self.content_type = @temp_file.content_type.to_s.chomp - end - self.filesize = @temp_file.size + if @temp_file.respond_to?(:original_filename) + self.filename = @temp_file.original_filename + self.filename.force_encoding("UTF-8") + end + if @temp_file.respond_to?(:content_type) + self.content_type = @temp_file.content_type.to_s.chomp + end + self.filesize = @temp_file.size end end -- cgit v1.2.3