mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Fix variable name
This commit is contained in:
+2
-2
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user