Restore "Reason: " prefix

pull/11845/merge
Stephane Nicoll 7 years ago
parent 3291a7a76d
commit 2d814e5102

@ -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