Skip to content

Commit c4ce44b

Browse files
committed
Fix old jakarta mentions in new javax wrapper
1 parent 0089d6b commit c4ce44b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

agent/src/main/java/dev/aikido/agent/wrappers/spring/SpringMVCJavaxWrapper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
import static net.bytebuddy.matcher.ElementMatchers.nameContains;
2828

2929
public class SpringMVCJavaxWrapper implements Wrapper {
30-
public static final Logger logger = LogManager.getLogger(SpringMVCJakartaWrapper.class);
30+
public static final Logger logger = LogManager.getLogger(SpringMVCJavaxWrapper.class);
3131

3232
@Override
3333
public String getName() {
3434
// We wrap the function doFilterInternal which gets called with
3535
// HttpServletRequest request, HttpServletResponse response
3636
// And is part of org.springframework.web.filter.RequestContextFilter
3737
// See: https://github.com/spring-projects/spring-framework/blob/4749d810db0261ce16ae5f32da6d375bb8087430/spring-web/src/main/java/org/springframework/web/filter/RequestContextFilter.java#L92
38-
return SpringMVCJakartaWrapper.SpringMVCAdvice.class.getName();
38+
return SpringMVCAdvice.class.getName();
3939
}
4040
@Override
4141
public ElementMatcher<? super MethodDescription> getMatcher() {

0 commit comments

Comments
 (0)