Browse Source

Restore "Reason: " prefix

pull/11845/merge
Stephane Nicoll 8 years ago
parent
commit
2d814e5102
  1. 4
      spring-boot-project/spring-boot-properties-migrator/src/main/java/org/springframework/boot/context/properties/migrator/PropertiesMigrationReport.java

4
spring-boot-project/spring-boot-properties-migrator/src/main/java/org/springframework/boot/context/properties/migrator/PropertiesMigrationReport.java

@ -86,14 +86,14 @@ class PropertiesMigrationReport { @@ -86,14 +86,14 @@ class PropertiesMigrationReport {
private String determineReason(ConfigurationMetadataProperty metadata) {
Deprecation deprecation = metadata.getDeprecation();
if (StringUtils.hasText(deprecation.getShortReason())) {
return deprecation.getShortReason();
return "Reason: " + deprecation.getShortReason();
}
if (StringUtils.hasText(deprecation.getReplacement())) {
return String.format(
"Reason: Replacement key '%s' uses an incompatible " + "target type",
deprecation.getReplacement());
}
return "none";
return "Reason: none";
}
private Map<String, List<PropertyMigration>> getContent(

Loading…
Cancel
Save