Method: Object#untrust
- Defined in:
- object.c
#untrust ⇒ Object
Returns object. This method is deprecated and will be removed in Ruby 3.2.
1225 1226 1227 1228 1229 1230 |
# File 'object.c', line 1225
VALUE
rb_obj_untrust(VALUE obj)
{
rb_warning("Object#untrust is deprecated and will be removed in Ruby 3.2.");
return obj;
}
|