From 101a42c5729177b17a0e9cc0a1acfd2ff86c9696 Mon Sep 17 00:00:00 2001 From: Benjamin Graf Date: Fri, 30 Mar 2018 11:00:45 +0200 Subject: [PATCH] Fix outdated import statements Closes gh-12697 --- .../src/main/asciidoc/production-ready-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index c9e637ee911..4c6ad89594c 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -1924,8 +1924,8 @@ PID file, as shown in the following example: [indent=0] ---- org.springframework.context.ApplicationListener=\ - org.springframework.boot.system.ApplicationPidFileWriter,\ - org.springframework.boot.system.EmbeddedServerPortFileWriter + org.springframework.boot.context.ApplicationPidFileWriter,\ + org.springframework.boot.web.context.WebServerPortFileWriter ----