Skip to content

Commit d86cfc9

Browse files
committed
Polishing
1 parent 1d70851 commit d86cfc9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spring-aop/src/main/java/org/springframework/aop/aspectj/AspectJExpressionPointcut.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ private PointcutParser initializePointcutParser(@Nullable ClassLoader classLoade
243243

244244
/**
245245
* If a pointcut expression has been specified in XML, the user cannot
246-
* write {@code and} as "&&" (though && will work).
247-
* We also allow {@code and} between two pointcut sub-expressions.
246+
* write "and" as "&&" (though {@code &&} will work).
247+
* <p>We also allow "and" between two pointcut sub-expressions.
248248
* <p>This method converts back to {@code &&} for the AspectJ pointcut parser.
249249
*/
250250
private String replaceBooleanOperators(String pcExpr) {

spring-aop/src/main/java/org/springframework/aop/aspectj/AspectJPointcutAdvisor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2021 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,8 +25,8 @@
2525
import org.springframework.util.Assert;
2626

2727
/**
28-
* AspectJPointcutAdvisor that adapts an {@link AbstractAspectJAdvice}
29-
* to the {@link org.springframework.aop.PointcutAdvisor} interface.
28+
* {@code AspectJPointcutAdvisor} adapts an {@link AbstractAspectJAdvice} to the
29+
* {@link PointcutAdvisor} interface.
3030
*
3131
* @author Adrian Colyer
3232
* @author Juergen Hoeller

0 commit comments

Comments
 (0)