brew tc --fix

This commit is contained in:
Ruoyu Zhong 2024-10-25 03:06:16 +08:00
parent 32a4a06ca8
commit 146212c5eb
No known key found for this signature in database

View File

@ -176,21 +176,21 @@ module Homebrew
# Since `method_defined?` is not a supported type guard, the use of `alias_method` below is not typesafe: # Since `method_defined?` is not a supported type guard, the use of `alias_method` below is not typesafe:
BottleSpecification.class_eval do BottleSpecification.class_eval do
T.unsafe(self).alias_method :old_method_missing, :method_missing if method_defined?(:method_missing) T.unsafe(self).alias_method :old_method_missing, :method_missing if method_defined?(:method_missing)
define_method(:method_missing) do |*| define_method(:method_missing) do |*_|
# do nothing # do nothing
end end
end end
Module.class_eval do Module.class_eval do
T.unsafe(self).alias_method :old_method_missing, :method_missing if method_defined?(:method_missing) T.unsafe(self).alias_method :old_method_missing, :method_missing if method_defined?(:method_missing)
define_method(:method_missing) do |*| define_method(:method_missing) do |*_|
# do nothing # do nothing
end end
end end
Resource.class_eval do Resource.class_eval do
T.unsafe(self).alias_method :old_method_missing, :method_missing if method_defined?(:method_missing) T.unsafe(self).alias_method :old_method_missing, :method_missing if method_defined?(:method_missing)
define_method(:method_missing) do |*| define_method(:method_missing) do |*_|
# do nothing # do nothing
end end
end end
@ -200,7 +200,7 @@ module Homebrew
T.unsafe(self).alias_method :old_parse_symbol_spec, T.unsafe(self).alias_method :old_parse_symbol_spec,
:parse_symbol_spec :parse_symbol_spec
end end
define_method(:parse_symbol_spec) do |*| define_method(:parse_symbol_spec) do |*_|
# do nothing # do nothing
end end
end end