Method: Object#trust
- Defined in:
- object.c
#trust ⇒ Object
Returns object. This method is deprecated and will be removed in Ruby 3.2.
1240 1241 1242 1243 1244 1245 |
# File 'object.c', line 1240
VALUE
rb_obj_trust(VALUE obj)
{
rb_warning("Object#trust is deprecated and will be removed in Ruby 3.2.");
return obj;
}
|