From 030dbc721802fc3a01541e21839133ce11bbeffc Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Tue, 22 Oct 2019 12:10:14 +0000 Subject: code cleanup: rubocop: fix Performance/RedundantBlockCall in lib/redmine/views/builders/structure.rb git-svn-id: http://svn.redmine.org/redmine/trunk@18813 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/views/builders/structure.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/redmine') diff --git a/lib/redmine/views/builders/structure.rb b/lib/redmine/views/builders/structure.rb index e37d3b86b..99db94be2 100644 --- a/lib/redmine/views/builders/structure.rb +++ b/lib/redmine/views/builders/structure.rb @@ -32,7 +32,7 @@ module Redmine def array(tag, options={}, &block) @struct << [] - block.call(self) + yield(self) ret = @struct.pop @struct.last[tag] = ret @struct.last.merge!(options) if options @@ -72,7 +72,7 @@ module Redmine if block @struct << (args.first.is_a?(Hash) ? args.first : {}) - block.call(self) + yield(self) ret = @struct.pop if @struct.last.is_a?(Array) @struct.last << ret -- cgit v1.2.3