aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula_support.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-05-25 16:02:07 +0100
committerMike McQuaid2013-05-25 16:02:18 +0100
commita75aff246e4f058e79b79563c93884b7fd7fa975 (patch)
tree2132c2eeac23487d9f1fc97ce7841cc55669b63a /Library/Homebrew/formula_support.rb
parent6f6d4e589413c765eb1d332cfc855b0ffb620461 (diff)
downloadbrew-a75aff246e4f058e79b79563c93884b7fd7fa975.tar.bz2
Remove cat_without_underscores bottle methods.
Diffstat (limited to 'Library/Homebrew/formula_support.rb')
-rw-r--r--Library/Homebrew/formula_support.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/Library/Homebrew/formula_support.rb b/Library/Homebrew/formula_support.rb
index 8b216db66..ed8b72d9d 100644
--- a/Library/Homebrew/formula_support.rb
+++ b/Library/Homebrew/formula_support.rb
@@ -76,15 +76,12 @@ end
class Bottle < SoftwareSpec
attr_writer :url
- # TODO: Can be removed when all bottles migrated to underscored cat symbols.
- attr_reader :cat_without_underscores
def initialize
super
@revision = 0
@prefix = '/usr/local'
@cellar = '/usr/local/Cellar'
- @cat_without_underscores = false
end
# Checksum methods in the DSL's bottle block optionally take
@@ -101,9 +98,6 @@ class Bottle < SoftwareSpec
if @#{cksum}.has_key? MacOS.cat
@checksum = @#{cksum}[MacOS.cat]
- elsif @#{cksum}.has_key? MacOS.cat_without_underscores
- @checksum = @#{cksum}[MacOS.cat_without_underscores]
- @cat_without_underscores = true
end
end
EOS