1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove unneeded line

This commit is contained in:
Jeremy Evans 2022-01-05 19:27:14 -08:00
parent a79c59472d
commit 24b53b1f3a
Notes: git 2022-01-07 01:03:59 +09:00

View file

@ -912,7 +912,6 @@ rb_module_s_alloc(VALUE klass)
VALUE mod = class_alloc(T_MODULE, klass);
RCLASS_M_TBL_INIT(mod);
FL_SET(mod, RMODULE_ALLOCATED_BUT_NOT_INITIALIZED);
RB_OBJ_WRITE(mod, &RCLASS(mod)->super, 0);
return mod;
}