From 2b5f8f36a2b845d3540a5a4e737c7331baff4790 Mon Sep 17 00:00:00 2001 From: leoli <269739606@qq.com> Date: Wed, 9 Oct 2019 09:24:46 +0800 Subject: [PATCH] Fix ImmutableConfigurationProperties import statement in ref docs See gh-18548 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index dd999046f060..c6e33c73b5fc 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -849,7 +849,7 @@ The example in the previous section can be rewritten in an immutable fashion as import java.net.InetAddress; import java.util.List; - import org.springframework.boot.context.properties.ConfigurationProperties; + import org.springframework.boot.context.properties.ImmutableConfigurationProperties; import org.springframework.boot.context.properties.DefaultValue; @ImmutableConfigurationProperties("acme")