From a58bbd6a512d95ca010d8bebae4fe590400c1413 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 6 Apr 2020 21:37:42 +0900 Subject: Use `rb_warn_deprecated` for `File.exists?` and `Dir.exists?` --- file.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index c267781d20..929dac8c34 100644 --- a/file.c +++ b/file.c @@ -1782,16 +1782,16 @@ rb_file_exist_p(VALUE obj, VALUE fname) static VALUE rb_file_exists_p(VALUE obj, VALUE fname) { - const char *s = "FileTest#"; + const char *s = "FileTest#exist?"; if (obj == rb_mFileTest) { - s = "FileTest."; + s = "FileTest.exist?"; } else if (obj == rb_cFile || (RB_TYPE_P(obj, T_CLASS) && RTEST(rb_class_inherited_p(obj, rb_cFile)))) { - s = "File."; + s = "File.exist?"; } - rb_warning("%sexists? is a deprecated name, use %sexist? instead", s, s); + rb_warn_deprecated("", s); return rb_file_exist_p(obj, fname); } -- cgit v1.2.3