]> source.dussan.org Git - redmine.git/commitdiff
code cleanup: rubocop: fix Layout/IndentationConsistency in app/models/attachment.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 9 Oct 2019 07:39:28 +0000 (07:39 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 9 Oct 2019 07:39:28 +0000 (07:39 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18640 e93f8b46-1217-0410-a6f0-8f06a7374b81

.rubocop_todo.yml
app/models/attachment.rb

index bd6c71da2d5f211cfdfafbdb8ee2bda41c2d83d9..22aab269f972c8edfda46c8d691587a1a2e42cec 100644 (file)
@@ -286,7 +286,6 @@ Layout/IndentHeredoc:
 # SupportedStyles: normal, indented_internal_methods
 Layout/IndentationConsistency:
   Exclude:
-    - 'app/models/attachment.rb'
     - 'test/helpers/application_helper_test.rb'
     - 'test/integration/api_test/custom_fields_attribute_test.rb'
     - 'test/mocks/open_id_authentication_mock.rb'
index 0b151dabbeaf05c113f4d90282307f77283f2bb3..e5adbb2369b501d9a691442ecd3cc585c454bd0c 100644 (file)
@@ -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