From 74996ab32ce64046802c75b9e3dd5d92a2e7acb6 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Mon, 13 Nov 2023 14:07:34 -0500 Subject: [PATCH] Remove new `tap` parameter to `FormulaAPILoader` --- Library/Homebrew/formulary.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index f01d144e5b..813853c848 100644 --- a/Library/Homebrew/formulary.rb +++ b/Library/Homebrew/formulary.rb @@ -667,8 +667,8 @@ module Formulary # Load formulae from the API. class FormulaAPILoader < FormulaLoader - def initialize(name, tap: CoreTap.instance) - super name, Formulary.core_path(name), tap: tap + def initialize(name) + super name, Formulary.core_path(name) end def klass(flags:, ignore_errors:)