mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-25 16:29:28 +00:00
Make SimpleAliasRegistry.aliasNames final
This commit is contained in:
committed by
Juergen Hoeller
parent
89d563097f
commit
99e1b0d117
@@ -50,7 +50,7 @@ public class SimpleAliasRegistry implements AliasRegistry {
|
||||
private final Map<String, String> aliasMap = new ConcurrentHashMap<>(16);
|
||||
|
||||
/** List of alias names, in registration order. */
|
||||
private volatile List<String> aliasNames = new ArrayList<>(16);
|
||||
private final List<String> aliasNames = new ArrayList<>(16);
|
||||
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user