|
|
|
@ -239,8 +239,8 @@ public class DefaultContextCache implements ContextCache { |
|
|
|
MergedContextConfiguration child = key; |
|
|
|
MergedContextConfiguration child = key; |
|
|
|
MergedContextConfiguration parent = child.getParent(); |
|
|
|
MergedContextConfiguration parent = child.getParent(); |
|
|
|
while (parent != null) { |
|
|
|
while (parent != null) { |
|
|
|
Set<MergedContextConfiguration> list = this.hierarchyMap.computeIfAbsent(parent, k -> new HashSet<>()); |
|
|
|
Set<MergedContextConfiguration> set = this.hierarchyMap.computeIfAbsent(parent, k -> new HashSet<>()); |
|
|
|
list.add(child); |
|
|
|
set.add(child); |
|
|
|
child = parent; |
|
|
|
child = parent; |
|
|
|
parent = child.getParent(); |
|
|
|
parent = child.getParent(); |
|
|
|
} |
|
|
|
} |
|
|
|
|