From bc0133d1cbe2bc46cb84f37367b2771b52663621 Mon Sep 17 00:00:00 2001 From: Mrproliu Date: Tue, 8 Oct 2019 17:00:51 +0800 Subject: [PATCH] fix java doc annotation error --- .../apm/plugin/ehcache/v2/EhcacheConstructorInterceptor.java | 2 +- .../skywalking/apm/plugin/ehcache/v2/EhcacheEnhanceInfo.java | 2 +- .../apm/plugin/ehcache/v2/EhcacheLockInterceptor.java | 2 +- .../apm/plugin/ehcache/v2/EhcacheOperateAllInterceptor.java | 2 +- .../apm/plugin/ehcache/v2/EhcacheOperateElementInterceptor.java | 2 +- .../apm/plugin/ehcache/v2/EhcacheOperateObjectInterceptor.java | 2 +- .../plugin/ehcache/v2/define/EhcachePluginInstrumentation.java | 2 +- .../aom/plugin/ehcache/v2/EhcacheInterceptorTest.java | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheConstructorInterceptor.java b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheConstructorInterceptor.java index e41bdd8ae1ef..16df5fb4843a 100644 --- a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheConstructorInterceptor.java +++ b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheConstructorInterceptor.java @@ -23,7 +23,7 @@ import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.InstanceConstructorInterceptor; /** - * @Author MrPro + * @author MrPro */ public class EhcacheConstructorInterceptor implements InstanceConstructorInterceptor { @Override diff --git a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheEnhanceInfo.java b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheEnhanceInfo.java index 64d0f0b8cdf8..5691db2a9927 100644 --- a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheEnhanceInfo.java +++ b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheEnhanceInfo.java @@ -19,7 +19,7 @@ package com.apache.skywalking.apm.plugin.ehcache.v2; /** - * @Author MrPro + * @author MrPro */ public class EhcacheEnhanceInfo { diff --git a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheLockInterceptor.java b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheLockInterceptor.java index 7f081e145162..592c164aba38 100644 --- a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheLockInterceptor.java +++ b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheLockInterceptor.java @@ -32,7 +32,7 @@ import static com.apache.skywalking.apm.plugin.ehcache.v2.define.EhcachePluginInstrumentation.LOCK_ENHANCE_METHOD_SUFFIX; /** - * @Author MrPro + * @author MrPro */ public class EhcacheLockInterceptor implements InstanceMethodsAroundInterceptor { diff --git a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateAllInterceptor.java b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateAllInterceptor.java index 281ead2b8f6b..7d43f9b995c3 100644 --- a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateAllInterceptor.java +++ b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateAllInterceptor.java @@ -29,7 +29,7 @@ import java.lang.reflect.Method; /** - * @Author MrPro + * @author MrPro */ public class EhcacheOperateAllInterceptor implements InstanceMethodsAroundInterceptor { diff --git a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateElementInterceptor.java b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateElementInterceptor.java index b1eab70d5489..17b87a7aa742 100644 --- a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateElementInterceptor.java +++ b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateElementInterceptor.java @@ -31,7 +31,7 @@ import java.lang.reflect.Method; /** - * @Author MrPro + * @author MrPro */ public class EhcacheOperateElementInterceptor implements InstanceMethodsAroundInterceptor { diff --git a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateObjectInterceptor.java b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateObjectInterceptor.java index 4b776f57b2d7..977f9358668a 100644 --- a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateObjectInterceptor.java +++ b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/EhcacheOperateObjectInterceptor.java @@ -30,7 +30,7 @@ import java.lang.reflect.Method; /** - * @Author MrPro + * @author MrPro */ public class EhcacheOperateObjectInterceptor implements InstanceMethodsAroundInterceptor { diff --git a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/define/EhcachePluginInstrumentation.java b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/define/EhcachePluginInstrumentation.java index 7faee09c802a..53c5637b4f32 100644 --- a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/define/EhcachePluginInstrumentation.java +++ b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/main/java/com/apache/skywalking/apm/plugin/ehcache/v2/define/EhcachePluginInstrumentation.java @@ -32,7 +32,7 @@ * * {@link EhcachePluginInstrumentation} enhance @{@link net.sf.ehcache.Cache} * - * @Author MrPro + * @author MrPro */ public class EhcachePluginInstrumentation extends ClassInstanceMethodsEnhancePluginDefine { diff --git a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/test/java/com/apache/skywalking/aom/plugin/ehcache/v2/EhcacheInterceptorTest.java b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/test/java/com/apache/skywalking/aom/plugin/ehcache/v2/EhcacheInterceptorTest.java index 4e0eb1d2f064..fd8a1ba58463 100644 --- a/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/test/java/com/apache/skywalking/aom/plugin/ehcache/v2/EhcacheInterceptorTest.java +++ b/apm-sniffer/apm-sdk-plugin/ehcache-2.x-plugin/src/test/java/com/apache/skywalking/aom/plugin/ehcache/v2/EhcacheInterceptorTest.java @@ -47,7 +47,7 @@ import static org.hamcrest.CoreMatchers.is; /** - * @Author MrPro + * @author MrPro */ @RunWith(PowerMockRunner.class) @PowerMockRunnerDelegate(TracingSegmentRunner.class)