From d10d8e98c208a3d5040718426479c070f6abc122 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Thu, 3 Apr 2025 10:59:33 +0200 Subject: [PATCH] Remove default value for Container annotation --- .../web/service/registry/ImportHttpServices.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java b/spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java index 9bd5e94e0c..ada2739038 100644 --- a/spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java +++ b/spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java @@ -108,7 +108,7 @@ public @interface ImportHttpServices { @Import(AnnotationHttpServiceRegistrar.class) @interface Container { - ImportHttpServices[] value() default {}; + ImportHttpServices[] value(); } }