summaryrefslogtreecommitdiffstats
path: root/lib/redmine/helpers
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2023-01-02 06:10:53 +0000
committerGo MAEDA <maeda@farend.jp>2023-01-02 06:10:53 +0000
commit21ca0e3d0a87f688a641466f27cccc79c64e4d6d (patch)
tree077e1626157c308df8609681f46489e75bf0b0b1 /lib/redmine/helpers
parent1481c721a222ccf05a43ae98d1cf7730314a13d5 (diff)
downloadredmine-21ca0e3d0a87f688a641466f27cccc79c64e4d6d.tar.gz
redmine-21ca0e3d0a87f688a641466f27cccc79c64e4d6d.zip
Fix RuboCop offense Style/MinMaxComparison (#36919).
git-svn-id: https://svn.redmine.org/redmine/trunk@22019 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/helpers')
-rw-r--r--lib/redmine/helpers/gantt.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb
index ade37a33e..448d3190e 100644
--- a/lib/redmine/helpers/gantt.rb
+++ b/lib/redmine/helpers/gantt.rb
@@ -117,7 +117,7 @@ module Redmine
return @number_of_rows if @number_of_rows
rows = projects.inject(0) {|total, p| total += number_of_rows_on_project(p)}
- rows > @max_rows ? @max_rows : rows
+ [rows, @max_rows].min
end
# Returns the number of rows that will be used to list a project on