File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
spring-tx/src/main/java/org/springframework/transaction/support Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2020 the original author or authors.
2
+ * Copyright 2002-2021 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
28
28
import org .apache .commons .logging .LogFactory ;
29
29
30
30
import org .springframework .core .NamedThreadLocal ;
31
- import org .springframework .core .annotation . AnnotationAwareOrderComparator ;
31
+ import org .springframework .core .OrderComparator ;
32
32
import org .springframework .lang .Nullable ;
33
33
import org .springframework .util .Assert ;
34
34
@@ -320,7 +320,7 @@ public static List<TransactionSynchronization> getSynchronizations() throws Ille
320
320
else {
321
321
// Sort lazily here, not in registerSynchronization.
322
322
List <TransactionSynchronization > sortedSynchs = new ArrayList <>(synchs );
323
- AnnotationAwareOrderComparator .sort (sortedSynchs );
323
+ OrderComparator .sort (sortedSynchs );
324
324
return Collections .unmodifiableList (sortedSynchs );
325
325
}
326
326
}
You can’t perform that action at this time.
0 commit comments