Skip to content

Commit 232ea16

Browse files
wangwang
authored andcommitted
update comment word
1 parent 452d51f commit 232ea16

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Release Notes.
1717
* Support for tracking in lettuce versions 6.5.x and above.
1818
* Upgrade byte-buddy version to 1.17.6.
1919
* Support gRPC 1.59.x and 1.70.x server interceptor trace
20+
* Fix the `CreateAopProxyInterceptor` in the Spring core-patch changes the AOP proxy type when a class is
21+
enhanced by both SkyWalking and Spring AOP.
2022

2123
All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/236?closed=1)
2224

apm-sniffer/apm-sdk-plugin/spring-plugins/core-patch/src/main/java/org/apache/skywalking/apm/plugin/spring/patch/AutoProxyCreatorInterceptor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
import java.lang.reflect.Method;
2626

2727
/**
28-
* <code>AutoProxyCreatorInterceptor</code> check that the bean has been implement {@link EnhancedInstance}.
29-
* if yes, true will be returned.
28+
* <code>AutoProxyCreatorInterceptor</code> determines whether the given interface is {@link EnhancedInstance},
29+
* and therefore does not consider it a reasonable proxy interface.
3030
*/
3131
public class AutoProxyCreatorInterceptor implements InstanceMethodsAroundInterceptor {
3232

apm-sniffer/apm-sdk-plugin/spring-plugins/core-patch/src/main/java/org/apache/skywalking/apm/plugin/spring/patch/ProxyProcessorSupportInterceptor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
import java.lang.reflect.Method;
2626

2727
/**
28-
* <code>ProxyProcessorSupportInterceptor</code> check that the bean has been implement {@link EnhancedInstance}.
29-
* if yes, true will be returned.
28+
* <code>ProxyProcessorSupportInterceptor</code> determines whether the given interface is {@link EnhancedInstance},
29+
* and therefore does not consider it a reasonable proxy interface.
3030
*/
3131
public class ProxyProcessorSupportInterceptor implements InstanceMethodsAroundInterceptor {
3232

0 commit comments

Comments
 (0)