Merge branch '6.3.x'
This commit is contained in:
commit
4da13f6091
|
@ -159,6 +159,7 @@ public final class AuthorizationAdvisorProxyFactory
|
|||
*/
|
||||
@Override
|
||||
public Object proxy(Object target) {
|
||||
AnnotationAwareOrderComparator.sort(this.advisors);
|
||||
if (target == null) {
|
||||
return null;
|
||||
}
|
||||
|
@ -185,7 +186,6 @@ public final class AuthorizationAdvisorProxyFactory
|
|||
@Deprecated
|
||||
public void setAdvisors(AuthorizationAdvisor... advisors) {
|
||||
this.advisors = new ArrayList<>(List.of(advisors));
|
||||
AnnotationAwareOrderComparator.sort(this.advisors);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -199,7 +199,6 @@ public final class AuthorizationAdvisorProxyFactory
|
|||
@Deprecated
|
||||
public void setAdvisors(Collection<AuthorizationAdvisor> advisors) {
|
||||
this.advisors = new ArrayList<>(advisors);
|
||||
AnnotationAwareOrderComparator.sort(this.advisors);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue