From 9069d42550daa412599f8d85c5d5a9e049432ba3 Mon Sep 17 00:00:00 2001 From: hyuraku <32809703+hyuraku@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:08:17 +0900 Subject: [PATCH] remove Cask::Config.explicit_s --- Library/Homebrew/cask/config.rb | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Library/Homebrew/cask/config.rb b/Library/Homebrew/cask/config.rb index 30a5c521cb207..a091d84a6de5b 100644 --- a/Library/Homebrew/cask/config.rb +++ b/Library/Homebrew/cask/config.rb @@ -188,23 +188,6 @@ def merge(other) self.class.new(explicit: other.explicit.merge(explicit)) end - # Get explicit configuration as a string. - # - # @api internal - # - # TODO: This is only used by `homebrew/bundle`, so move it there. - sig { returns(String) } - def explicit_s - explicit.map do |key, value| - # inverse of #env - converts :languages config key back to --language flag - if key == :languages - key = "language" - value = T.cast(explicit.fetch(:languages, []), T::Array[String]).join(",") - end - "#{key}: \"#{value.to_s.sub(/^#{Dir.home}/, "~")}\"" - end.join(", ") - end - sig { params(options: T.untyped).returns(String) } def to_json(*options) {