Skip to content

Commit

Permalink
Make SimpleAliasRegistry.aliasNames final
Browse files Browse the repository at this point in the history
  • Loading branch information
izeye committed Mar 17, 2024
1 parent 89d5630 commit 578fa39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 578fa39

Please sign in to comment.