From becb84fc65bd695668789d5b8048def8fc7ad90a Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger <697964+dduugg@users.noreply.github.com> Date: Tue, 13 Aug 2024 13:03:48 -0700 Subject: [PATCH] Update Library/Homebrew/cli/parser.rb Co-authored-by: Mike McQuaid --- Library/Homebrew/cli/parser.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Library/Homebrew/cli/parser.rb b/Library/Homebrew/cli/parser.rb index f612deb9a2..4ac4625171 100644 --- a/Library/Homebrew/cli/parser.rb +++ b/Library/Homebrew/cli/parser.rb @@ -167,11 +167,11 @@ module Homebrew @command_name = T.let(T.must(cmd_location.label).chomp("_args").tr("_", "-"), String) @is_dev_cmd = T.let(T.must(cmd_location.absolute_path).start_with?(Commands::HOMEBREW_DEV_CMD_PATH), T::Boolean) - odeprecated( - "`brew #{@command_name}'. This command needs to be refactored, as it is written in a style that", - "inheritance from `Homebrew::AbstractCommand' ( see https://docs.brew.sh/External-Commands )", - disable_for_developers: false, - ) + # odeprecated( + # "`brew #{@command_name}'. This command needs to be refactored, as it is written in a style that", + # "inheritance from `Homebrew::AbstractCommand' ( see https://docs.brew.sh/External-Commands )", + # disable_for_developers: false, + # ) end @constraints = T.let([], T::Array[[String, String]])