aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend/pathname.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-01-26 13:03:22 +0000
committerMike McQuaid2013-01-30 22:36:12 -0800
commit1da2d5dd92dbe9baf7d6e047bcb7f39f06e9c52e (patch)
tree578606a7d9895a249b15829a5595d7a180c11bd1 /Library/Homebrew/extend/pathname.rb
parentdedc6aec754e248127fed3d098e4614063a073e3 (diff)
downloadhomebrew-1da2d5dd92dbe9baf7d6e047bcb7f39f06e9c52e.tar.bz2
Remove MD5 support.
Closes #17317.
Diffstat (limited to 'Library/Homebrew/extend/pathname.rb')
-rw-r--r--Library/Homebrew/extend/pathname.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb
index 77719c984..7453f647b 100644
--- a/Library/Homebrew/extend/pathname.rb
+++ b/Library/Homebrew/extend/pathname.rb
@@ -216,11 +216,6 @@ class Pathname
incr_hash.hexdigest
end
- def md5
- require 'digest/md5'
- incremental_hash(Digest::MD5)
- end
-
def sha1
require 'digest/sha1'
incremental_hash(Digest::SHA1)