diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index bf67f51db..717f39125 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -294,7 +294,6 @@ Layout/SpaceInsideHashLiteralBraces: # SupportedStyles: space, no_space Layout/SpaceInsideParens: Exclude: - - 'app/controllers/application_controller.rb' - 'app/helpers/issues_helper.rb' - 'app/models/auth_source_ldap.rb' - 'app/models/repository/cvs.rb' diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 02612e36f..62232ea06 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -365,7 +365,7 @@ class ApplicationController < ActionController::Base def find_attachments if (attachments = params[:attachments]).present? att = attachments.values.collect do |attachment| - Attachment.find_by_token( attachment[:token] ) if attachment[:token].present? + Attachment.find_by_token(attachment[:token]) if attachment[:token].present? end att.compact! end