From 83d91a0a5526763806514c5feb6477bb457687e8 Mon Sep 17 00:00:00 2001 From: Rajasekharan Vengalil Date: Tue, 14 Jan 2020 18:02:49 -0800 Subject: [PATCH] Remove redundant type args --- actix-tracing/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-tracing/src/lib.rs b/actix-tracing/src/lib.rs index 22df7ce3..beb48dad 100644 --- a/actix-tracing/src/lib.rs +++ b/actix-tracing/src/lib.rs @@ -124,7 +124,7 @@ where U: IntoServiceFactory, { apply( - TracingTransform::<_, S, _>::new(make_span), + TracingTransform::new(make_span), service_factory.into_factory(), ) }