SONAR-6859 update property sonar.technicalDebt.developmentCost desc.

This commit is contained in:
Sébastien Lesaint 2015-09-22 19:27:45 +02:00
parent 115883b7cb
commit 5fe92c0d46

View File

@ -46,8 +46,8 @@ class DebtProperties {
PropertyDefinition.builder(CoreProperties.DEVELOPMENT_COST)
.defaultValue("" + CoreProperties.DEVELOPMENT_COST_DEF_VALUE)
.name("Development cost")
.description("Cost to develop one unit of code. If the unit is a line of code (LOC), and the cost to develop 1 LOC has been estimated at 30 minutes, " +
"then the value of this property would be 30.")
.description("Cost to develop one line of code (LOC). Example: if the cost to develop 1 LOC has been estimated " +
"at 30 minutes, then the value of this property would be 30.")
.category(CoreProperties.CATEGORY_TECHNICAL_DEBT)
.deprecatedKey("workUnitsBySizePoint")
.build(),