summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-03 11:10:16 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-03 11:10:16 +0000
commitc3cc282f7f23abb36c10e4df489c04976b9b4004 (patch)
tree1e32deac9ee694c480fd5e81bcb4e6327776e73b /proc.c
parent5ac1972c1a7b56aa1aace73b30c1a8fcd8705ac8 (diff)
* class.c (clone_method): remove redundant check for me->def != NULL.
Now, all `me` have `me->def`. * proc.c (rb_method_entry_location): ditto. * vm.c (rb_vm_check_redefinition_opt_method): ditto. * vm.c (add_opt_method): ditto. * vm_eval.c (vm_call0_body): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50748 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proc.c b/proc.c
index a661cb3d3b..950a02a206 100644
--- a/proc.c
+++ b/proc.c
@@ -2239,7 +2239,7 @@ method_def_location(const rb_method_definition_t *def)
VALUE
rb_method_entry_location(const rb_method_entry_t *me)
{
- if (!me || !me->def) return Qnil;
+ if (!me) return Qnil;
return method_def_location(me->def);
}