Remove dead code

This code only existed to support very old formula syntax, which was
otherwise removed in e6b97bebd99779b52462dcd387191d804fc95b93.
This commit is contained in:
Jack Nagel 2013-02-11 21:02:28 -06:00
parent 248891fde1
commit a63fa4356a

View File

@ -698,11 +698,7 @@ private
@build ||= BuildOptions.new(ARGV.options_only)
end
def url val=nil, specs={}
if val.nil?
return @stable.url if @stable
return @url if @url
end
def url val, specs={}
@stable ||= SoftwareSpec.new
@stable.url(val, specs)
end