Fix variable name

This commit is contained in:
Sam Brannen
2026-01-14 13:44:04 +01:00
parent 5f5da06467
commit b5c2003c51
@@ -239,8 +239,8 @@ public class DefaultContextCache implements ContextCache {
MergedContextConfiguration child = key;
MergedContextConfiguration parent = child.getParent();
while (parent != null) {
Set<MergedContextConfiguration> list = this.hierarchyMap.computeIfAbsent(parent, k -> new HashSet<>());
list.add(child);
Set<MergedContextConfiguration> set = this.hierarchyMap.computeIfAbsent(parent, k -> new HashSet<>());
set.add(child);
child = parent;
parent = child.getParent();
}