Commit 2d814e51 authored by Stephane Nicoll's avatar Stephane Nicoll

Restore "Reason: " prefix

parent 3291a7a7
......@@ -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(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment