
Deprecate more methods. Internal APIs have been verified to be unused elsewhere and removed. External APIs have had deprecation methods added. Existing deprecations have been either upgraded to produce warnings or no longer deprecated and the reasoning documented.
7 lines
120 B
Ruby
7 lines
120 B
Ruby
module HomebrewArgvExtension
|
|
def build_32_bit?
|
|
odeprecated "ARGV.build_32_bit?"
|
|
include? "--32-bit"
|
|
end
|
|
end
|