aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/enumerable.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/activesupport/lib/active_support/core_ext/enumerable.rb b/activesupport/lib/active_support/core_ext/enumerable.rb
index a49c4c701b..5c556ff98d 100644
--- a/activesupport/lib/active_support/core_ext/enumerable.rb
+++ b/activesupport/lib/active_support/core_ext/enumerable.rb
@@ -1,12 +1,4 @@
module Enumerable #:nodoc:
- def first_match
- match = nil
- each do |items|
- break if match = yield(items)
- end
- match
- end
-
# Collect an enumerable into sets, grouped by the result of a block. Useful,
# for example, for grouping records by date.
#