diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-02 14:53:02 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-02 14:53:02 +0000 |
| commit | 4d5513d4697170120a2068e18263d416d5cd9d8b (patch) | |
| tree | 6d1723d76ff18cb42093f13789963dbac3214a16 /lib/rss/rss.rb | |
| parent | 778687ab738e00eb1ca0c5630fc4c727adf3fdb5 (diff) | |
| download | ruby-4d5513d4697170120a2068e18263d416d5cd9d8b.tar.gz ruby-4d5513d4697170120a2068e18263d416d5cd9d8b.tar.xz ruby-4d5513d4697170120a2068e18263d416d5cd9d8b.zip | |
* lib: do not use __send__ to access private methods. [ruby-dev:26935]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/rss.rb')
| -rw-r--r-- | lib/rss/rss.rb | 2 |
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 |
