From 304c180870bc71dde8f58d4b85c26501af505043 Mon Sep 17 00:00:00 2001 From: Mahad Zaryab Date: Sat, 14 Dec 2024 21:52:24 -0500 Subject: [PATCH] Remove Commented Code Signed-off-by: Mahad Zaryab --- cmd/query/app/querysvc/adjuster/adjuster.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cmd/query/app/querysvc/adjuster/adjuster.go b/cmd/query/app/querysvc/adjuster/adjuster.go index fe384696b07..240b7cfddb9 100644 --- a/cmd/query/app/querysvc/adjuster/adjuster.go +++ b/cmd/query/app/querysvc/adjuster/adjuster.go @@ -17,14 +17,6 @@ type Adjuster interface { Adjust(ptrace.Traces) error } -// // Func is a type alias that wraps a function and makes an Adjuster from it. -// type Func func(traces ptrace.Traces) (ptrace.Traces, error) - -// // Adjust implements Adjuster interface for the Func alias. -// func (f Func) Adjust(traces ptrace.Traces) error { -// return f(traces) -// } - // Sequence creates an adjuster that combines a series of adjusters // applied in order. Errors from each step are accumulated and returned // in the end as a single wrapper error. Errors do not interrupt the