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/soap/mapping | |
| 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/soap/mapping')
| -rw-r--r-- | lib/soap/mapping/mapping.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/soap/mapping/mapping.rb b/lib/soap/mapping/mapping.rb index 626df8c82..cc0e6ff9d 100644 --- a/lib/soap/mapping/mapping.rb +++ b/lib/soap/mapping/mapping.rb @@ -254,7 +254,7 @@ module Mapping def self.define_singleton_method(obj, name, &block) sclass = (class << obj; self; end) - sclass.__send__(:define_method, name, &block) + sclass.class_eval {define_method(name, &block)} end def self.get_attribute(obj, attr_name) |
