diff options
author | Go MAEDA <maeda@farend.jp> | 2020-10-24 01:39:46 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-10-24 01:39:46 +0000 |
commit | 9ef5f6789e5beccf3db4f3fd3dfbece347e1b00b (patch) | |
tree | 7f8395a0ac604eac6fbaf897bc5c1dc1b2995b9f /lib/redmine/export | |
parent | 6ba3e85df87dbf112b62fbe3becbdb8aecf2dad3 (diff) | |
download | redmine-9ef5f6789e5beccf3db4f3fd3dfbece347e1b00b.tar.gz redmine-9ef5f6789e5beccf3db4f3fd3dfbece347e1b00b.zip |
Use sum instead of inject(0, :+) (#34153).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@20173 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/export')
-rw-r--r-- | lib/redmine/export/pdf/issues_pdf_helper.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/redmine/export/pdf/issues_pdf_helper.rb b/lib/redmine/export/pdf/issues_pdf_helper.rb index c6ee5a18f..575d3950a 100644 --- a/lib/redmine/export/pdf/issues_pdf_helper.rb +++ b/lib/redmine/export/pdf/issues_pdf_helper.rb @@ -276,13 +276,13 @@ module Redmine col_width = [] unless query.inline_columns.empty? col_width = calc_col_width(issues, query, table_width, pdf) - table_width = col_width.inject(0, :+) + table_width = col_width.sum end # use full width if the query has block columns (description, last_notes or full width custom fieds) if table_width > 0 && query.block_columns.any? col_width = col_width.map {|w| w * (page_width - right_margin - left_margin) / table_width} - table_width = col_width.inject(0, :+) + table_width = col_width.sum end # title @@ -418,7 +418,7 @@ module Redmine if table_width > col_min * col_width_avg.length table_width -= col_min * col_width_avg.length else - ratio = table_width / col_width_avg.inject(0, :+) + ratio = table_width / col_width_avg.sum return col_width = col_width_avg.map {|w| w * ratio} end end @@ -451,11 +451,11 @@ module Redmine col_width_avg.map! {|x| x / k} # calculate columns width - ratio = table_width / col_width_avg.inject(0, :+) + ratio = table_width / col_width_avg.sum col_width = col_width_avg.map {|w| w * ratio} # correct max word width if too many columns - ratio = table_width / word_width_max.inject(0, :+) + ratio = table_width / word_width_max.sum word_width_max.map! {|v| v * ratio} if ratio < 1 # correct and lock width of some columns @@ -479,7 +479,7 @@ module Redmine while done == 0 # calculate free & locked columns width done = 1 - ratio = table_width / col_width.inject(0, :+) + ratio = table_width / col_width.sum # correct columns width col_width.each_with_index do |w,i| @@ -500,7 +500,7 @@ module Redmine end end - ratio = table_width / col_width.inject(0, :+) + ratio = table_width / col_width.sum col_width.map! {|v| v * ratio + col_min} col_width end |