Method: Object#untaint
- Defined in:
- object.c
#untaint ⇒ Object
Returns object. This method is deprecated and will be removed in Ruby 3.2.
1188 1189 1190 1191 1192 1193 |
# File 'object.c', line 1188
VALUE
rb_obj_untaint(VALUE obj)
{
rb_warn_deprecated_to_remove("Object#untaint", "3.2");
return obj;
}
|