aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-11-30 23:33:20 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-02 17:24:34 +0900
commit1a5205536f0c0d6021450b11722919211847df86 (patch)
treeee2f59c0b946faeb406e16715df967e05d7012c2 /file.c
parent9e94cd18fcf193a9f87b908b7130123602a7d800 (diff)
downloadruby-1a5205536f0c0d6021450b11722919211847df86.tar.gz
Removed deprecated Dir.exists? and File.exists?
Diffstat (limited to 'file.c')
-rw-r--r--file.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/file.c b/file.c
index 0c599b0895..c64ec8cf7f 100644
--- a/file.c
+++ b/file.c
@@ -1787,23 +1787,6 @@ rb_file_exist_p(VALUE obj, VALUE fname)
return Qtrue;
}
-/* :nodoc: */
-static VALUE
-rb_file_exists_p(VALUE obj, VALUE fname)
-{
- const char *s = "FileTest#exist?";
- if (obj == rb_mFileTest) {
- s = "FileTest.exist?";
- }
- else if (obj == rb_cFile ||
- (RB_TYPE_P(obj, T_CLASS) &&
- RTEST(rb_class_inherited_p(obj, rb_cFile)))) {
- s = "File.exist?";
- }
- rb_warn_deprecated("%.*ss?", s, (int)(strlen(s)-1), s);
- return rb_file_exist_p(obj, fname);
-}
-
/*
* call-seq:
* File.readable?(file_name) -> true or false
@@ -6469,7 +6452,6 @@ Init_File(void)
define_filetest_function("directory?", rb_file_directory_p, 1);
define_filetest_function("exist?", rb_file_exist_p, 1);
- define_filetest_function("exists?", rb_file_exists_p, 1);
define_filetest_function("readable?", rb_file_readable_p, 1);
define_filetest_function("readable_real?", rb_file_readable_real_p, 1);
define_filetest_function("world_readable?", rb_file_world_readable_p, 1);