Fix missing "since" attributes for Deprecated code

See gh-34989
This commit is contained in:
Brian Clozel
2025-06-05 09:16:50 +02:00
parent 1e9179a87c
commit 5fbb81de10
13 changed files with 38 additions and 38 deletions

View File

@@ -616,14 +616,14 @@ public class AspectJExpressionPointcut extends AbstractExpressionPointcut
@Override
@SuppressWarnings("rawtypes")
@Deprecated
@Deprecated(since = "4.0") // deprecated by AspectJ
public boolean couldMatchJoinPointsInType(Class someClass) {
return (contextMatch(someClass) == FuzzyBoolean.YES);
}
@Override
@SuppressWarnings("rawtypes")
@Deprecated
@Deprecated(since = "4.0") // deprecated by AspectJ
public boolean couldMatchJoinPointsInType(Class someClass, MatchingContext context) {
return (contextMatch(someClass) == FuzzyBoolean.YES);
}

View File

@@ -319,7 +319,7 @@ public class MethodInvocationProceedingJoinPoint implements ProceedingJoinPoint,
}
@Override
@Deprecated
@Deprecated(since = "4.0") // deprecated by AspectJ
public int getColumn() {
throw new UnsupportedOperationException();
}