From b16aafd3131804b325299f9565571fd3332a21a8 Mon Sep 17 00:00:00 2001 From: Tanna McClure Date: Tue, 23 Jan 2024 14:17:22 -0800 Subject: [PATCH] remove redundant line from thor template --- lib/tasks/instrumentation_generator/templates/chain_method.tt | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/tasks/instrumentation_generator/templates/chain_method.tt b/lib/tasks/instrumentation_generator/templates/chain_method.tt index c318b4405f..00d60621ce 100644 --- a/lib/tasks/instrumentation_generator/templates/chain_method.tt +++ b/lib/tasks/instrumentation_generator/templates/chain_method.tt @@ -1,5 +1,4 @@ alias_method(:<%= @method.downcase %>_without_new_relic, :<%= @method.downcase %>) -alias_method(:<%= @method.downcase %>, :<%= @method.downcase %>_with_new_relic) def <%= @method.downcase %><%= "(#{@args})" unless @args.empty? %> <%= @method.downcase %>_with_new_relic<%= "(#{@args})" unless @args.empty? %> do