Set inheritLocations to true in ContextConfigurationAttributes constructor

Closes gh-36000
This commit is contained in:
Sam Brannen
2025-12-11 13:04:58 +01:00
parent d835fe311d
commit 8916ee9f81
2 changed files with 45 additions and 1 deletions
@@ -76,7 +76,7 @@ public class ContextConfigurationAttributes {
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
public ContextConfigurationAttributes(Class<?> declaringClass) {
this(declaringClass, EMPTY_LOCATIONS, EMPTY_CLASSES, false, (Class[]) EMPTY_CLASSES, true, ContextLoader.class);
this(declaringClass, EMPTY_LOCATIONS, EMPTY_CLASSES, true, (Class[]) EMPTY_CLASSES, true, ContextLoader.class);
}
/**