aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/attr_internal.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-08-29 08:24:04 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-08-29 08:24:04 +0000
commit965ae90bc6ff63c4aeee81cbc2137d8d7ef5ccdc (patch)
tree11796161d2f7d5c51f9626c4acbeb4ac34cb1215 /activesupport/lib/active_support/core_ext/module/attr_internal.rb
parent06a731e365011715759f46a09cb726b9f0350d00 (diff)
downloadrails-965ae90bc6ff63c4aeee81cbc2137d8d7ef5ccdc.tar.gz
rails-965ae90bc6ff63c4aeee81cbc2137d8d7ef5ccdc.tar.bz2
rails-965ae90bc6ff63c4aeee81cbc2137d8d7ef5ccdc.zip
Eliminate Active Support warnings.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4839 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module/attr_internal.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/module/attr_internal.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/attr_internal.rb b/activesupport/lib/active_support/core_ext/module/attr_internal.rb
index c793da7159..7f2fb9641b 100644
--- a/activesupport/lib/active_support/core_ext/module/attr_internal.rb
+++ b/activesupport/lib/active_support/core_ext/module/attr_internal.rb
@@ -15,8 +15,8 @@ class Module
# Declare attributes backed by 'internal' instance variables names.
def attr_internal_accessor(*attrs)
- attr_internal_reader *attrs
- attr_internal_writer *attrs
+ attr_internal_reader(*attrs)
+ attr_internal_writer(*attrs)
end
alias_method :attr_internal, :attr_internal_accessor