Method: Object#untrusted?
- Defined in:
- object.c
#untrusted? ⇒ false
Returns false. This method is deprecated and will be removed in Ruby 3.2.
1211 1212 1213 1214 1215 1216 |
# File 'object.c', line 1211 VALUE rb_obj_untrusted(VALUE obj) { rb_warning("Object#untrusted? is deprecated and will be removed in Ruby 3.2."); return Qfalse; } |