}
if (!isDefault) {
problems.throwIfHasErrors();
InjectionPointMetaData injectionPoint = operativeInjectionData.operativeInjectionPoint;
if (injectionPoint != null) {
if (injectionPoint.getSetter().isAnnotationPresent(Deprecated.class)) {
problems.addWarning("Configuration property '%s' is deprecated and should not be used", prefix + injectionPoint.getProperty());
}
return injectionPoint;
}
}