From 0365bd552e787fc4c351c7a54375a01378cbd0c1 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 19 Oct 2019 13:32:37 +0000 Subject: code cleanup: rubocop: fix Style/ParenthesesAroundCondition in app/controllers/context_menus_controller.rb git-svn-id: http://svn.redmine.org/redmine/trunk@18774 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/context_menus_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/controllers/context_menus_controller.rb') diff --git a/app/controllers/context_menus_controller.rb b/app/controllers/context_menus_controller.rb index 21c61f975..8622d15da 100644 --- a/app/controllers/context_menus_controller.rb +++ b/app/controllers/context_menus_controller.rb @@ -24,7 +24,7 @@ class ContextMenusController < ApplicationController before_action :find_issues, :only => :issues def issues - if (@issues.size == 1) + if @issues.size == 1 @issue = @issues.first end @issue_ids = @issues.map(&:id).sort @@ -68,7 +68,7 @@ class ContextMenusController < ApplicationController preload(:user).to_a (render_404; return) unless @time_entries.present? - if (@time_entries.size == 1) + if @time_entries.size == 1 @time_entry = @time_entries.first end -- cgit v1.2.3