diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2019-03-07 00:11:28 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-03-07 20:21:00 +0100 |
commit | a8aa40bd9bd4fea44111def143fa792b07b6013d (patch) | |
tree | 9850099ce10ba9f7894e71a1470c5a0ca3a8b0c5 /sonar-plugin-api | |
parent | bb6bb844e6a8ac1bb2fd9fdafa73e4005c994806 (diff) | |
download | sonarqube-a8aa40bd9bd4fea44111def143fa792b07b6013d.tar.gz sonarqube-a8aa40bd9bd4fea44111def143fa792b07b6013d.zip |
SONAR-11802 fix description of metric "sqale_index"
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java b/sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java index 6456a70b0c4..b04a30671ca 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java @@ -1935,7 +1935,7 @@ public final class CoreMetrics { */ // TODO should be renamed to MAINTAINABILITY_REMEDIATION_EFFORT public static final Metric<Long> TECHNICAL_DEBT = new Metric.Builder(TECHNICAL_DEBT_KEY, "Technical Debt", Metric.ValueType.WORK_DUR) - .setDescription("Total effort (in days) to fix all the issues on the component and therefore to comply to all the requirements.") + .setDescription("Total effort (in hours) to fix all the issues on the component and therefore to comply to all the requirements.") .setDomain(DOMAIN_MAINTAINABILITY) .setDirection(Metric.DIRECTION_WORST) .setOptimizedBestValue(true) |