Remove useless code

The target attribute is effectively checked for null beforehand so this
additional defensive check can be removed.

Closes gh-3725
This commit is contained in:
Stephane Nicoll 2015-08-12 11:12:42 +02:00
parent 56115b9baa
commit 398d06e326
1 changed files with 1 additions and 4 deletions

View File

@ -298,10 +298,7 @@ public class ConfigurationPropertiesBindingPostProcessor implements BeanPostProc
factory.bindPropertiesToTarget(); factory.bindPropertiesToTarget();
} }
catch (Exception ex) { catch (Exception ex) {
String targetClass = "[unknown]"; String targetClass = ClassUtils.getShortName(target.getClass());
if (target != null) {
ClassUtils.getShortName(target.getClass());
}
throw new BeanCreationException(beanName, "Could not bind properties to " throw new BeanCreationException(beanName, "Could not bind properties to "
+ targetClass + " (" + getAnnotationDetails(annotation) + ")", ex); + targetClass + " (" + getAnnotationDetails(annotation) + ")", ex);
} }