diff options
author | Jeremy Evans <[email protected]> | 2020-01-22 09:18:08 -0800 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2020-01-22 11:19:13 -0800 |
commit | e18b817b1f0a4c318f1f0fe54fceaa5cbc85e8ab (patch) | |
tree | f9f07e27da476af8794414176f4bf084c17e233a /object.c | |
parent | 28d31ead34baff1c4abc0d7d902ef4bc1d576fb2 (diff) |
Make taint warnings non-verbose instead of verbose
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2856
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1216,7 +1216,7 @@ rb_obj_dummy1(VALUE _x, VALUE _y) VALUE rb_obj_tainted(VALUE obj) { - rb_warning("Object#tainted? is deprecated and will be removed in Ruby 3.2."); + rb_warn("Object#tainted? is deprecated and will be removed in Ruby 3.2."); return Qfalse; } @@ -1230,7 +1230,7 @@ rb_obj_tainted(VALUE obj) VALUE rb_obj_taint(VALUE obj) { - rb_warning("Object#taint is deprecated and will be removed in Ruby 3.2."); + rb_warn("Object#taint is deprecated and will be removed in Ruby 3.2."); return obj; } @@ -1245,7 +1245,7 @@ rb_obj_taint(VALUE obj) VALUE rb_obj_untaint(VALUE obj) { - rb_warning("Object#untaint is deprecated and will be removed in Ruby 3.2."); + rb_warn("Object#untaint is deprecated and will be removed in Ruby 3.2."); return obj; } @@ -1259,7 +1259,7 @@ rb_obj_untaint(VALUE obj) VALUE rb_obj_untrusted(VALUE obj) { - rb_warning("Object#untrusted? is deprecated and will be removed in Ruby 3.2."); + rb_warn("Object#untrusted? is deprecated and will be removed in Ruby 3.2."); return Qfalse; } @@ -1273,7 +1273,7 @@ rb_obj_untrusted(VALUE obj) VALUE rb_obj_untrust(VALUE obj) { - rb_warning("Object#untrust is deprecated and will be removed in Ruby 3.2."); + rb_warn("Object#untrust is deprecated and will be removed in Ruby 3.2."); return obj; } @@ -1288,7 +1288,7 @@ rb_obj_untrust(VALUE obj) VALUE rb_obj_trust(VALUE obj) { - rb_warning("Object#trust is deprecated and will be removed in Ruby 3.2."); + rb_warn("Object#trust is deprecated and will be removed in Ruby 3.2."); return obj; } @@ -1299,7 +1299,7 @@ rb_obj_trust(VALUE obj) void rb_obj_infect(VALUE victim, VALUE carrier) { - rb_warning("rb_obj_infect is deprecated and will be removed in Ruby 3.2."); + rb_warn("rb_obj_infect is deprecated and will be removed in Ruby 3.2."); } /** |