aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/where_clause_factory.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-02-23 11:10:51 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-02-23 11:10:51 +0900
commit6d63b5e49a399fe246afcebad45c3c962de268fa (patch)
tree029d62a7f20e425efd8dedabe4beeeae05a038b8 /activerecord/lib/active_record/relation/where_clause_factory.rb
parentcf629f6d2901615062a39723f442e604937bed24 (diff)
downloadrails-6d63b5e49a399fe246afcebad45c3c962de268fa.tar.gz
rails-6d63b5e49a399fe246afcebad45c3c962de268fa.tar.bz2
rails-6d63b5e49a399fe246afcebad45c3c962de268fa.zip
Use private attr_reader
Since #32028, Rails 6 requires Ruby 2.3+. No longer needed workaround for Ruby 2.2 "private attribute?" warning.
Diffstat (limited to 'activerecord/lib/active_record/relation/where_clause_factory.rb')
-rw-r--r--activerecord/lib/active_record/relation/where_clause_factory.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/relation/where_clause_factory.rb b/activerecord/lib/active_record/relation/where_clause_factory.rb
index 92b720068c..c1b3eea9df 100644
--- a/activerecord/lib/active_record/relation/where_clause_factory.rb
+++ b/activerecord/lib/active_record/relation/where_clause_factory.rb
@@ -26,8 +26,7 @@ module ActiveRecord
WhereClause.new(parts)
end
- protected
-
+ private
attr_reader :klass, :predicate_builder
end
end