From e12311e364d269174410bfc7fead4f988ff163e1 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 14 Jun 2013 16:05:17 +0200 Subject: [PATCH] Polish Javadoc --- .../context/annotation/ConfigurationCondition.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-context/src/main/java/org/springframework/context/annotation/ConfigurationCondition.java b/spring-context/src/main/java/org/springframework/context/annotation/ConfigurationCondition.java index bcdd56a5f6..641c50b62d 100644 --- a/spring-context/src/main/java/org/springframework/context/annotation/ConfigurationCondition.java +++ b/spring-context/src/main/java/org/springframework/context/annotation/ConfigurationCondition.java @@ -20,10 +20,11 @@ package org.springframework.context.annotation; * A {@link Condition} that offers more fine-grained control when used with * {@code @Configuration}. Allows certain {@link Condition}s to adapt when they match * based on the configuration phase. For example, a condition that checks if a bean has - * already been registered might choose to only be evaluated on the + * already been registered might choose to only be evaluated during the * {@link ConfigurationPhase#REGISTER_BEAN REGISTER_BEAN} {@link ConfigurationPhase}. * * @author Phillip Webb + * @since 4.0 */ public interface ConfigurationCondition extends Condition { -- GitLab