Browse Source

polishing

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4583 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/merge
Sam Brannen 15 years ago
parent
commit
f7ebe823ff
  1. 4
      org.springframework.test/src/main/java/org/springframework/test/context/support/AnnotationConfigContextLoader.java

4
org.springframework.test/src/main/java/org/springframework/test/context/support/AnnotationConfigContextLoader.java

@ -94,7 +94,7 @@ public class AnnotationConfigContextLoader extends AbstractGenericContextLoader
* <li>must be annotated with {@code @Configuration}</li> * <li>must be annotated with {@code @Configuration}</li>
* </ul> * </ul>
* *
* @param clazz the class the check * @param clazz the class to check
* @return <code>true</code> if the supplied class meets the candidate criteria * @return <code>true</code> if the supplied class meets the candidate criteria
*/ */
private boolean isDefaultConfigurationClassCandidate(Class<?> clazz) { private boolean isDefaultConfigurationClassCandidate(Class<?> clazz) {
@ -104,7 +104,7 @@ public class AnnotationConfigContextLoader extends AbstractGenericContextLoader
/** /**
* TODO Document generatesDefaults(). * TODO Document generatesDefaults().
*/ */
// TODO Consider moving to SmartContextLoader SPI. // TODO Consider defining generatesDefaults() in the SmartContextLoader SPI.
protected boolean generatesDefaults() { protected boolean generatesDefaults() {
return true; return true;
} }

Loading…
Cancel
Save