From fee1e3aa2b1f3caffe11ba062defc0d32183e076 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Sun, 20 Sep 2020 17:03:17 +0100 Subject: [PATCH] Polish javadoc of LoggingSystemFactory See gh-23387 --- .../boot/logging/LoggingSystemFactory.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystemFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystemFactory.java index befe1505a3..28f2d24245 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystemFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystemFactory.java @@ -16,7 +16,6 @@ package org.springframework.boot.logging; -import org.springframework.boot.env.EnvironmentPostProcessorsFactory; import org.springframework.core.io.support.SpringFactoriesLoader; /** @@ -29,7 +28,7 @@ import org.springframework.core.io.support.SpringFactoriesLoader; public interface LoggingSystemFactory { /** - * Return a logging system implementation or {@code null} if not logging system is + * Return a logging system implementation or {@code null} if no logging system is * available. * @param classLoader the class loader to use * @return a logging system @@ -37,9 +36,8 @@ public interface LoggingSystemFactory { LoggingSystem getLoggingSystem(ClassLoader classLoader); /** - * Return a {@link EnvironmentPostProcessorsFactory} backed by - * {@code spring.factories}. - * @return an {@link LoggingSystemFactory} instance + * Return a {@link LoggingSystemFactory} backed by {@code spring.factories}. + * @return a {@link LoggingSystemFactory} instance */ static LoggingSystemFactory fromSpringFactories() { return new DelegatingLoggingSystemFactory(