From cb00d6312f0bab88a2a8e3f13b1ed9278332d587 Mon Sep 17 00:00:00 2001 From: Ax1an Date: Thu, 25 Feb 2021 20:51:27 +0800 Subject: [PATCH] Update the comments in TomcatInstrumentation class. (#6442) --- .../apm/plugin/tomcat78x/define/TomcatInstrumentation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apm-sniffer/apm-sdk-plugin/tomcat-7.x-8.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/tomcat78x/define/TomcatInstrumentation.java b/apm-sniffer/apm-sdk-plugin/tomcat-7.x-8.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/tomcat78x/define/TomcatInstrumentation.java index 2ccec0477..f4a276ddc 100644 --- a/apm-sniffer/apm-sdk-plugin/tomcat-7.x-8.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/tomcat78x/define/TomcatInstrumentation.java +++ b/apm-sniffer/apm-sdk-plugin/tomcat-7.x-8.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/tomcat78x/define/TomcatInstrumentation.java @@ -36,12 +36,12 @@ public class TomcatInstrumentation extends ClassInstanceMethodsEnhancePluginDefi private static final String ENHANCE_CLASS = "org.apache.catalina.core.StandardHostValve"; /** - * The intercept class for "invoke" method in the class "org.apache.catalina.core.StandardWrapperValve" + * The intercept class for "invoke" method in the class "org.apache.catalina.core.StandardHostValve" */ private static final String INVOKE_INTERCEPT_CLASS = "org.apache.skywalking.apm.plugin.tomcat78x.TomcatInvokeInterceptor"; /** - * The intercept class for "exception" method in the class "org.apache.catalina.core.StandardWrapperValve" + * The intercept class for "exception" method in the class "org.apache.catalina.core.StandardHostValve" */ private static final String EXCEPTION_INTERCEPT_CLASS = "org.apache.skywalking.apm.plugin.tomcat78x.TomcatExceptionInterceptor";