From 3c4a0b2e6807cfb67d4ee76a15c8b8a242f12bdf Mon Sep 17 00:00:00 2001 From: Marc-Andre Lafortune Date: Fri, 16 Nov 2012 03:35:42 -0500 Subject: Simplify (and optimize) --- activesupport/lib/active_support/core_ext/array/grouping.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'activesupport') diff --git a/activesupport/lib/active_support/core_ext/array/grouping.rb b/activesupport/lib/active_support/core_ext/array/grouping.rb index 97a25cd2e6..640e6e9328 100644 --- a/activesupport/lib/active_support/core_ext/array/grouping.rb +++ b/activesupport/lib/active_support/core_ext/array/grouping.rb @@ -67,9 +67,9 @@ class Array number.times do |index| length = division + (modulo > 0 && modulo > index ? 1 : 0) - padding = fill_with != false && - modulo > 0 && length == division ? 1 : 0 - groups << slice(start, length).concat([fill_with] * padding) + groups << last_group = slice(start, length) + last_group << fill_with if fill_with != false && + modulo > 0 && length == division start += length end -- cgit v1.2.3