Method: Object#untaint
- Defined in:
- object.c
#untaint ⇒ Object
Returns object. This method is deprecated and will be removed in Ruby 3.2.
1197 1198 1199 1200 1201 1202 |
# File 'object.c', line 1197 VALUE rb_obj_untaint(VALUE obj) { rb_warning("Object#untaint is deprecated and will be removed in Ruby 3.2."); return obj; } |