Method: Object#untaint

Defined in:
object.c

#untaintObject

Returns object. This method is deprecated and will be removed in Ruby 3.2.

Returns:



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;
}