diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-09-05 14:03:06 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-09-05 14:03:06 +0000 |
commit | 5e620bdd65c703c8527d7165f41155b89a8b36a4 (patch) | |
tree | 972adc2d35004366f8c4b9d8d9fce30116d5aca7 /ext/pathname/lib | |
parent | 0fd37b09ee800e051fcfb433f50c70a81d811813 (diff) |
* ext/pathname/pathname.c (path_owned_p): Pathname#owned?
translated from pathname.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29182 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 4343de180e..180bc4c970 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -486,9 +486,6 @@ end class Pathname # * FileTest * - # See <tt>FileTest.owned?</tt>. - def owned?() FileTest.owned?(@path) end - # See <tt>FileTest.readable?</tt>. def readable?() FileTest.readable?(@path) end |