summaryrefslogtreecommitdiffstats
path: root/lib/rss/rss.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-02 14:53:02 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-02 14:53:02 +0000
commitda0d6e4facdb5f2b3ea2a04ef00de18764158927 (patch)
tree7194c55210572d21506dce99d32577db423d8f61 /lib/rss/rss.rb
parentfcbc33981b5ffb37693e30f0e385f84e83bce0dc (diff)
downloadruby-da0d6e4facdb5f2b3ea2a04ef00de18764158927.tar.gz
ruby-da0d6e4facdb5f2b3ea2a04ef00de18764158927.tar.xz
ruby-da0d6e4facdb5f2b3ea2a04ef00de18764158927.zip
* lib: do not use __send__ to access private methods. [ruby-dev:26935]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/rss.rb')
-rw-r--r--lib/rss/rss.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rss/rss.rb b/lib/rss/rss.rb
index c200f8956..0d3da8b51 100644
--- a/lib/rss/rss.rb
+++ b/lib/rss/rss.rb
@@ -659,7 +659,7 @@ EOC
if parent.respond_to?(plural_name)
target = parent.__send__(plural_name)
__send__(plural_name).each do |elem|
- elem.__send__("setup_maker", target)
+ elem.setup_maker(target)
end
end
end