Skip to content

Commit ef87756

Browse files
committed
bad
1 parent b658c65 commit ef87756

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

instrumentation/activej-http-6.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/activejhttp/ActivejAsyncServletInstrumentation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ public class ActivejAsyncServletInstrumentation implements TypeInstrumentation {
3333

3434
@Override
3535
public ElementMatcher<TypeDescription> typeMatcher() {
36-
return hasSuperType(named("io.activej.http.AsyncServlet")).and(not(isInterface()));
36+
return hasSuperType(named("io.activej.http.AsyncServlet"))
37+
.and(not(isInterface()));
3738
}
3839

3940
@Override

0 commit comments

Comments
 (0)