Skip to content

Commit

Permalink
Update usedProperties to be backed by ConcurrentHashMap
Browse files Browse the repository at this point in the history
  • Loading branch information
akang31 committed Jul 19, 2023
1 parent b0e3a0c commit 7db899f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public Set<String> getUsedProperties() {
return usedProperties;
}

private Set<String> usedProperties = new HashSet<>();
private Set<String> usedProperties = ConcurrentHashMap.newKeySet();

private List<AbstractConfiguration> configList = new CopyOnWriteArrayList<AbstractConfiguration>();

Expand Down

0 comments on commit 7db899f

Please sign in to comment.