diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-09-22 19:27:45 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-09-25 15:03:00 +0200 |
commit | 5fe92c0d466745cc021009d9bd2685da6b484e9b (patch) | |
tree | 7ce5bd115427ecbb06177eb505d94c0ed5aceaf9 /sonar-core | |
parent | 115883b7cb6a3bb253cc3463ad1e8ae87324e717 (diff) | |
download | sonarqube-5fe92c0d466745cc021009d9bd2685da6b484e9b.tar.gz sonarqube-5fe92c0d466745cc021009d9bd2685da6b484e9b.zip |
SONAR-6859 update property sonar.technicalDebt.developmentCost desc.
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java b/sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java index 18ea09998b3..47f11ff107b 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java +++ b/sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java @@ -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(), |