* file.c (rb_f_test): removed meaningless "case 'a'".

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45836 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2014-05-05 19:38:11 +00:00
Родитель 0c3d513185
Коммит 08e0c31d14
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Tue May 6 04:31:48 2014 Tadayoshi Funaba <tadf@dotrb.org>
* file.c (rb_f_test): removed meaningless "case 'a'".
Tue May 6 01:28:14 2014 Tanaka Akira <akr@fsij.org> Tue May 6 01:28:14 2014 Tanaka Akira <akr@fsij.org>
* lib/open-uri.rb (OpenURI.open_uri): Call StringIO#close only if * lib/open-uri.rb (OpenURI.open_uri): Call StringIO#close only if

1
file.c
Просмотреть файл

@ -4604,7 +4604,6 @@ rb_f_test(int argc, VALUE *argv)
case 'd': case 'd':
return rb_file_directory_p(0, argv[1]); return rb_file_directory_p(0, argv[1]);
case 'a':
case 'e': case 'e':
return rb_file_exist_p(0, argv[1]); return rb_file_exist_p(0, argv[1]);