From 98ec60c15e0570bef4b53824e979f712aeee0a5a Mon Sep 17 00:00:00 2001 From: hyuraku <32809703+hyuraku@users.noreply.github.com> Date: Thu, 13 Apr 2023 19:02:20 +0900 Subject: [PATCH] remove nil param --- Library/Homebrew/dev-cmd/audit.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 1c87d25669..a55d50325d 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -253,7 +253,6 @@ module Homebrew # For switches, we add `|| nil` so that `nil` will be passed # instead of `false` if they aren't set. # This way, we can distinguish between "not set" and "set to false". - audit_download: nil, audit_online: (args.online? || nil), audit_strict: (args.strict? || nil), @@ -263,7 +262,6 @@ module Homebrew audit_new_cask: (args.new_cask? || nil), audit_token_conflicts: (args.token_conflicts? || nil), quarantine: true, - language: nil, any_named_args: !no_named_args, only: args.only, except: args.except,