diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-09-06 14:08:08 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-09-06 14:08:08 +0000 |
commit | 746f85beb448078ff915cb0aa8f1b05954ef3991 (patch) | |
tree | 3b1256df518b4e7854a2165e6429c1aeb872434c /ext/pathname/lib | |
parent | dad43c29f88081fc683a3f2993073d4a315d5ffe (diff) |
* ext/pathname/pathname.c (path_world_readable_p):
Pathname#world_readable? translated from pathname.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29191 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/pathname/lib')
-rw-r--r-- | ext/pathname/lib/pathname.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb index 02a41888ba..d3b1354db7 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -486,9 +486,6 @@ end class Pathname # * FileTest * - # See <tt>FileTest.world_readable?</tt>. - def world_readable?() FileTest.world_readable?(@path) end - # See <tt>FileTest.readable_real?</tt>. def readable_real?() FileTest.readable_real?(@path) end |