From 4cda5a1aa9cbb7166007d3f8ee0f775148ac9c4c Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 16 Apr 2025 17:06:59 +0100 Subject: [PATCH] cask/artifact/abstract_flight_block: fix warning in Ruby 3.4 --- Library/Homebrew/cask/artifact/abstract_flight_block.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cask/artifact/abstract_flight_block.rb b/Library/Homebrew/cask/artifact/abstract_flight_block.rb index 497f1afdf1..56eae12355 100644 --- a/Library/Homebrew/cask/artifact/abstract_flight_block.rb +++ b/Library/Homebrew/cask/artifact/abstract_flight_block.rb @@ -12,7 +12,7 @@ module Cask end def self.uninstall_dsl_key - dsl_key.to_s.prepend("uninstall_").to_sym + :"uninstall_#{dsl_key}" end attr_reader :directives