use of org.springframework.ide.vscode.boot.configurationmetadata.Deprecation in project sts4 by spring-projects.
the class InformationTemplates method createDeprecation.
private static Deprecation createDeprecation(PropertyInfo info) {
Deprecation deprecation = null;
if (info.isDeprecated()) {
deprecation = new Deprecation();
deprecation.setReason(info.getDeprecationReason());
deprecation.setReplacement(info.getDeprecationReplacement());
}
return deprecation;
}
Aggregations