diff options
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 fdbafc512b..ac8d106e11 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -494,9 +494,6 @@ class Pathname # * Dir * Dir.foreach(@path) {|f| yield self.class.new(f) } end - # See <tt>Dir.rmdir</tt>. Remove the referenced directory. - def rmdir() Dir.rmdir(@path) end - # See <tt>Dir.open</tt>. def opendir(&block) # :yield: dir Dir.open(@path, &block) |