]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-11802 fix description of metric "sqale_index"
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 6 Mar 2019 23:11:28 +0000 (00:11 +0100)
committerSonarTech <sonartech@sonarsource.com>
Thu, 7 Mar 2019 19:21:00 +0000 (20:21 +0100)
sonar-core/src/main/resources/org/sonar/l10n/core.properties
sonar-core/src/test/java/org/sonar/core/i18n/DefaultI18nTest.java
sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java

index 9ba97fab7d9b5f6bfd007a0e47053eabcdfdddcd..57ef2a7c71a592723b2d45db336a566f514593c1 100644 (file)
@@ -1980,7 +1980,7 @@ metric.skipped_tests.short_name=Skipped
 metric.sqale_debt_ratio.description=Ratio of the actual technical debt compared to the estimated cost to develop the whole source code from scratch
 metric.sqale_debt_ratio.name=Technical Debt Ratio
 metric.sqale_debt_ratio.short_name=Debt Ratio
-metric.sqale_index.description=Total effort (in days) to fix all the issues on the component and therefore to comply to all the requirements.
+metric.sqale_index.description=Total effort (in hours) to fix all the issues on the component and therefore to comply to all the requirements.
 metric.sqale_index.name=Technical Debt
 metric.sqale_index.short_name=Debt
 metric.sqale_rating.description=A-to-E rating based on the technical debt ratio
index ad6ebf9a5e5a967f30664824b51d48f9c618fd33..aedf30248af0cf76fba2c523c5c232b7ac979662 100644 (file)
@@ -41,7 +41,7 @@ public class DefaultI18nTest {
 
   private TestSystem2 system2 = new TestSystem2();
 
-  DefaultI18n underTest;
+  private DefaultI18n underTest;
 
   @Before
   public void before() {
index 6456a70b0c4adaeef4605d201fd30c7994c771e0..b04a30671caf263138a80f927e363bf59dca522e 100644 (file)
@@ -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)