This is an automated email from the ASF dual-hosted git repository. wusheng pushed a commit to branch remove-javassist in repository https://gitbox.apache.org/repos/asf/skywalking.git
commit 0ab4538785c80b3961a9e80b42e40979b798fe42 Author: Wu Sheng <[email protected]> AuthorDate: Sun Jul 28 09:48:11 2019 +0800 Finish the PR. --- .../skywalking/apm/agent/core/plugin/InstrumentDebuggingClass.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/InstrumentDebuggingClass.java b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/InstrumentDebuggingClass.java index 1b14be7..bbf2b75 100644 --- a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/InstrumentDebuggingClass.java +++ b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/InstrumentDebuggingClass.java @@ -21,7 +21,6 @@ package org.apache.skywalking.apm.agent.core.plugin; import java.io.File; import java.io.IOException; -import net.bytebuddy.description.type.TypeDescription; import net.bytebuddy.dynamic.DynamicType; import org.apache.skywalking.apm.agent.core.boot.AgentPackageNotFoundException; import org.apache.skywalking.apm.agent.core.boot.AgentPackagePath; @@ -30,6 +29,9 @@ import org.apache.skywalking.apm.agent.core.logging.api.ILog; import org.apache.skywalking.apm.agent.core.logging.api.LogManager; /** + * The manipulated class output. Write the dynamic classes to the `debugging` folder, when we need to do some debug and + * recheck. + * * @author wu-sheng */ public enum InstrumentDebuggingClass {
