From 3608baa9909b4b20a8366fcc48393b7763b4be41 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 29 Jul 2010 13:29:20 +0000 Subject: * ext/pathname/pathname.c (path_cmp): Pathname#<=> translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/pathname/lib/pathname.rb | 6 ------ 1 file changed, 6 deletions(-) (limited to 'ext/pathname/lib/pathname.rb') diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb index 8abbd667e5..0c99b95892 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -208,12 +208,6 @@ class Pathname # :startdoc: - # Provides for comparing pathnames, case-sensitively. - def <=>(other) - return nil unless Pathname === other - @path.tr('/', "\0") <=> other.to_s.tr('/', "\0") - end - def hash # :nodoc: @path.hash end -- cgit v1.2.3