fixing tests in .test package that were failing due to missing CGLIB dependency

This commit is contained in:
Chris Beams
2009-03-27 02:10:41 +00:00
parent 160e04c15a
commit af058e599d
3 changed files with 4 additions and 3 deletions

View File

@@ -170,9 +170,8 @@ public class ConfigurationClassPostProcessor extends AbstractConfigurationClassP
Class.forName(CGLIB_TEST_CLASS);
} catch (ClassNotFoundException e) {
throw new IllegalStateException("CGLIB is required to process @Configuration classes. " +
"Either add CGLIB v2.2.3 to the classpath or remove the following " +
"@Configuration bean definitions: ["
+ StringUtils.arrayToCommaDelimitedString(configBeanDefs.getBeanDefinitionNames()) + "]");
"Either add CGLIB to the classpath or remove the following @Configuration bean definitions: [" +
StringUtils.arrayToCommaDelimitedString(configBeanDefs.getBeanDefinitionNames()) + "]");
}
}