aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/result.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/result.rb')
-rw-r--r--activerecord/lib/active_record/result.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/activerecord/lib/active_record/result.rb b/activerecord/lib/active_record/result.rb
index c84ad586e2..3a3e65ef32 100644
--- a/activerecord/lib/active_record/result.rb
+++ b/activerecord/lib/active_record/result.rb
@@ -54,15 +54,6 @@ module ActiveRecord
end
end
- def each_pair
- return to_enum(__method__) unless block_given?
-
- columns = @columns.map { |c| c.dup.freeze }
- @rows.each do |row|
- yield columns, row
- end
- end
-
def to_hash
hash_rows
end