Polishing

This commit is contained in:
Juergen Hoeller
2025-12-04 00:12:31 +01:00
parent 667851c0fa
commit 07c0213f20
21 changed files with 35 additions and 50 deletions
@@ -236,7 +236,7 @@ public class DefaultContextCache implements ContextCache {
}
private Set<Class<?>> getActiveTestClasses(MergedContextConfiguration mergedConfig) {
return this.contextUsageMap.computeIfAbsent(mergedConfig, mcc -> new HashSet<>());
return this.contextUsageMap.computeIfAbsent(mergedConfig, key -> new HashSet<>());
}
@Override