From bede82eab3543ca4ced8a860542fb2731ff4328d Mon Sep 17 00:00:00 2001 From: Jeremy Croteau Date: Thu, 17 Aug 2023 19:40:26 -0400 Subject: [PATCH] :rotating_light: Lint II --- app/services/deprecation_warnings/base_handler.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/services/deprecation_warnings/base_handler.rb b/app/services/deprecation_warnings/base_handler.rb index e5fda01d7cb..65b473bfb38 100644 --- a/app/services/deprecation_warnings/base_handler.rb +++ b/app/services/deprecation_warnings/base_handler.rb @@ -8,8 +8,7 @@ class << self # Subclasses must respond to `.call` to play nice with `ActiveSupport::Deprecation.behavior=`. # https://github.com/rails/rails/blob/a4581b53aae93a8dd3205abae0630398cbce9204/activesupport/lib/active_support/deprecation/behaviors.rb#L70-L71 # :reek:LongParameterList - # :reek:UnusedParameters - def call(message, callstack, deprecation_horizon, gem_name) + def call(_message, _callstack, _deprecation_horizon, _gem_name) fail NotImplementedError end