From da734ac8fe0e298bce5019ea0e3c3c157a5e7a07 Mon Sep 17 00:00:00 2001 From: honganan <975990722@qq.com> Date: Mon, 19 Nov 2018 14:41:55 +0800 Subject: [PATCH] fix comments issue #1935 (#1936) --- .../interceptor/enhance/InstanceConstructorInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }