Remove some premature odisabled

See https://github.com/Homebrew/brew/pull/11075#discussion_r610602507
This commit is contained in:
Mike McQuaid 2021-04-09 14:12:40 +01:00
parent 576ec2c9a3
commit d5733a4133
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ class AbstractDownloadStrategy
rescue ArgumentError => e
raise unless e.message.include?("timeout")
odisabled "`def _fetch` in a subclass of `CurlDownloadStrategy`"
odeprecated "`def _fetch` in a subclass of `CurlDownloadStrategy`"
options.delete(:timeout)
super(*args, **options)
end

View File

@ -533,7 +533,7 @@ module Homebrew
rescue ArgumentError => e
raise unless e.message.include?("unknown keyword: cask")
odisabled "`def self.find_versions` in `#{strategy}` without a `cask` parameter"
odeprecated "`def self.find_versions` in `#{strategy}` without a `cask` parameter"
end
match_version_map = strategy_data[:matches]
regex = strategy_data[:regex]