aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core/src
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-07-10 13:54:10 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-07-10 13:54:15 +0200
commitf09ad0c18ab1e326722e0fb224c05dc62b0e7c0e (patch)
tree0087b94c57d9b7342f647dc6ad5593f999b4e5f7 /sonar-core/src
parent35484095549ad707c4815b59aae1c7e7a3f52e20 (diff)
downloadsonarqube-f09ad0c18ab1e326722e0fb224c05dc62b0e7c0e.tar.gz
sonarqube-f09ad0c18ab1e326722e0fb224c05dc62b0e7c0e.zip
SONAR-5388 Rename properties
Diffstat (limited to 'sonar-core/src')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java4
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 8979927ddc7..035cfcb01e7 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
@@ -55,8 +55,8 @@ class DebtProperties {
.deprecatedKey("sizeMetric")
.build(),
- PropertyDefinition.builder(CoreProperties.MAN_DAYS_BY_SIZE_POINT)
- .defaultValue("" + CoreProperties.MAN_DAYS_BY_SIZE_POINT_DEF_VALUE)
+ 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.")