diff --git a/instrumentation/activej-http-6.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/activejhttp/ActivejAsyncServletInstrumentation.java b/instrumentation/activej-http-6.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/activejhttp/ActivejAsyncServletInstrumentation.java index c5951bd77116..116441d00e3f 100644 --- a/instrumentation/activej-http-6.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/activejhttp/ActivejAsyncServletInstrumentation.java +++ b/instrumentation/activej-http-6.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/activejhttp/ActivejAsyncServletInstrumentation.java @@ -33,7 +33,8 @@ public class ActivejAsyncServletInstrumentation implements TypeInstrumentation { @Override public ElementMatcher typeMatcher() { - return hasSuperType(named("io.activej.http.AsyncServlet")).and(not(isInterface())); + return hasSuperType(named("io.activej.http.AsyncServlet")) + .and(not(isInterface())); } @Override