Polish "Fix Javadoc"

See gh-32403
This commit is contained in:
Stéphane Nicoll
2024-03-09 15:53:49 +01:00
parent abdccffa39
commit 4983a802a7
17 changed files with 38 additions and 92 deletions

View File

@@ -44,9 +44,6 @@ public class LockMixin extends DelegatingIntroductionInterceptor implements Lock
this.locked = false;
}
/**
* @see org.springframework.aop.testfixture.mixin.Lockable#locked()
*/
@Override
public boolean locked() {
return this.locked;
@@ -54,10 +51,8 @@ public class LockMixin extends DelegatingIntroductionInterceptor implements Lock
/**
* Note that we need to override around advice.
* If the method is a setter and we're locked, prevent execution.
* Otherwise let super.invoke() handle it, and do normal
* Lockable(this) then target behaviour.
* @see org.aopalliance.intercept.MethodInterceptor#invoke(MethodInvocation)
* If the method is a setter, and we're locked, prevent execution.
* Otherwise, let super.invoke() handle it.
*/
@Override
public Object invoke(MethodInvocation invocation) throws Throwable {