= private = protected
untaint()
Removes the tainted mark from the object.
See #taint for more information.
VALUE rb_obj_untaint(VALUE obj) { rb_secure(3); if (OBJ_TAINTED(obj)) { rb_check_frozen(obj); FL_UNSET(obj, FL_TAINT); } return obj; }