Polish "Expose SpringBootCondition's logger"

Closes gh-10000
This commit is contained in:
Stephane Nicoll 2017-08-14 11:44:40 +02:00
parent 58826644d1
commit fa85308ab9
1 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ package org.springframework.boot.autoconfigure.condition;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.slf4j.Logger;
import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;
@ -159,11 +159,11 @@ public abstract class SpringBootCondition implements Condition {
}
/**
* Returns the instance of {@link Logger} used by this
* instance of the condition.
* @return instance of {@link Logger}
* Return the {@link Log logger} used by this instance of the condition.
* @return the {@link Log logger}
*/
protected final Log getLogger() {
return this.logger;
}
}