You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/src/main/java/org/springframework/security/authorization/method/AuthorizationAdvisorProxyFactory.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -169,6 +169,9 @@ public Object proxy(Object target) {
169
169
if (target == null) {
170
170
returnnull;
171
171
}
172
+
if (targetinstanceofAuthorizationProxyproxied) {
173
+
returnproxied;
174
+
}
172
175
Objectproxied = this.visitor.visit(this, target);
173
176
if (proxied != null) {
174
177
returnproxied;
@@ -365,6 +368,9 @@ private static final class ClassVisitor implements TargetVisitor {
0 commit comments