diff --git a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/interceptor/enhance/InstanceConstructorInterceptor.java b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/interceptor/enhance/InstanceConstructorInterceptor.java index e9179d6db..e7b6ee59c 100644 --- a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/interceptor/enhance/InstanceConstructorInterceptor.java +++ b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/interceptor/enhance/InstanceConstructorInterceptor.java @@ -28,7 +28,7 @@ package org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance; */ public interface InstanceConstructorInterceptor { /** - * Called before the origin constructor invocation. + * Called after the origin constructor invocation. */ void onConstruct(EnhancedInstance objInst, Object[] allArguments); }