From 275230536b9fe580896b51c2f2f47ae21610fdeb Mon Sep 17 00:00:00 2001 From: linlei Date: Wed, 17 Apr 2024 15:07:14 +0800 Subject: [PATCH] =?UTF-8?q?AnnotationAwareAspectJAutoProxyCreator=E6=BA=90?= =?UTF-8?q?=E7=A0=81=E5=88=86=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../spring-aop-annotationAwareAspectJAutoProxyCreator/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-aop/spring-aop-annotationAwareAspectJAutoProxyCreator/README.md b/spring-aop/spring-aop-annotationAwareAspectJAutoProxyCreator/README.md index 8ddba8b..9f5d21e 100644 --- a/spring-aop/spring-aop-annotationAwareAspectJAutoProxyCreator/README.md +++ b/spring-aop/spring-aop-annotationAwareAspectJAutoProxyCreator/README.md @@ -442,7 +442,7 @@ public static boolean canApply(Advisor advisor, Class targetClass, boolean ha * @return 切点是否能够应用于任何方法 */ public static boolean canApply(Pointcut pc, Class targetClass, boolean hasIntroductions) { - Assert.notNull(pc, "切点不能为空"); + Assert.notNull(pc, "Pointcut must not be null"); // 首先检查类过滤器是否匹配目标类 if (!pc.getClassFilter().matches(targetClass)) { return false;