From f7ebe823ff1f593e483531939d5fce4245d36498 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 19 Jun 2011 17:40:08 +0000 Subject: [PATCH] polishing git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4583 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../test/context/support/AnnotationConfigContextLoader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.springframework.test/src/main/java/org/springframework/test/context/support/AnnotationConfigContextLoader.java b/org.springframework.test/src/main/java/org/springframework/test/context/support/AnnotationConfigContextLoader.java index b720e30f631..56aa7a14381 100644 --- a/org.springframework.test/src/main/java/org/springframework/test/context/support/AnnotationConfigContextLoader.java +++ b/org.springframework.test/src/main/java/org/springframework/test/context/support/AnnotationConfigContextLoader.java @@ -94,7 +94,7 @@ public class AnnotationConfigContextLoader extends AbstractGenericContextLoader *
  • must be annotated with {@code @Configuration}
  • * * - * @param clazz the class the check + * @param clazz the class to check * @return true if the supplied class meets the candidate criteria */ private boolean isDefaultConfigurationClassCandidate(Class clazz) { @@ -104,7 +104,7 @@ public class AnnotationConfigContextLoader extends AbstractGenericContextLoader /** * TODO Document generatesDefaults(). */ - // TODO Consider moving to SmartContextLoader SPI. + // TODO Consider defining generatesDefaults() in the SmartContextLoader SPI. protected boolean generatesDefaults() { return true; }