Skip to content

Commit fa85308

Browse files
committed
Polish "Expose SpringBootCondition's logger"
Closes spring-projectsgh-10000
1 parent 5882664 commit fa85308

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/SpringBootCondition.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import org.apache.commons.logging.Log;
2020
import org.apache.commons.logging.LogFactory;
21-
import org.slf4j.Logger;
21+
2222
import org.springframework.context.annotation.Condition;
2323
import org.springframework.context.annotation.ConditionContext;
2424
import org.springframework.core.type.AnnotatedTypeMetadata;
@@ -159,11 +159,11 @@ protected final boolean matches(ConditionContext context,
159159
}
160160

161161
/**
162-
* Returns the instance of {@link Logger} used by this
163-
* instance of the condition.
164-
* @return instance of {@link Logger}
162+
* Return the {@link Log logger} used by this instance of the condition.
163+
* @return the {@link Log logger}
165164
*/
166165
protected final Log getLogger() {
167166
return this.logger;
168167
}
168+
169169
}

0 commit comments

Comments
 (0)