From 7169e4c71572cb96fa01317edf7b6c8ba9565f8e Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Tue, 12 Mar 2013 14:15:01 -0700 Subject: removing out of date comment. :heart::heart::heart::heart::heart::heart::heart::heart::heart::heart::heart::heart: @pixeltrix --- activesupport/lib/active_support/core_ext/class/attribute.rb | 3 --- 1 file changed, 3 deletions(-) (limited to 'activesupport/lib') diff --git a/activesupport/lib/active_support/core_ext/class/attribute.rb b/activesupport/lib/active_support/core_ext/class/attribute.rb index 23c174a231..e51ab9ddbc 100644 --- a/activesupport/lib/active_support/core_ext/class/attribute.rb +++ b/activesupport/lib/active_support/core_ext/class/attribute.rb @@ -73,9 +73,6 @@ class Class instance_reader = instance_reader = options.fetch(:instance_accessor, true) && options.fetch(:instance_reader, true) instance_writer = options.fetch(:instance_accessor, true) && options.fetch(:instance_writer, true) - # We use class_eval here rather than define_method because class_attribute - # may be used in a performance sensitive context therefore the overhead that - # define_method introduces may become significant. attrs.each do |name| define_singleton_method(name) { nil } define_singleton_method("#{name}?") { !!public_send(name) } -- cgit v1.2.3