]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5876 remove Sqale in name of metric sqale_debt_ratio
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Wed, 16 Sep 2015 14:18:33 +0000 (16:18 +0200)
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Tue, 22 Sep 2015 15:20:56 +0000 (17:20 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java

index f214f49bb414c6e369b4adef925b509446a39b6a..dd2e4235f7e9848790bbfc8fa714a1a307a1fe4b 100644 (file)
@@ -2088,7 +2088,7 @@ public final class CoreMetrics {
   /**
    * @since 4.5
    */
-  public static final Metric<Double> SQALE_DEBT_RATIO = new Metric.Builder(SQALE_DEBT_RATIO_KEY, "SQALE Technical Debt Ratio", Metric.ValueType.PERCENT)
+  public static final Metric<Double> SQALE_DEBT_RATIO = new Metric.Builder(SQALE_DEBT_RATIO_KEY, "Technical Debt Ratio", Metric.ValueType.PERCENT)
     .setDescription("Ratio of the technical debt compared to what it would cost to develop the whole source code from scratch.")
     .setDomain(DOMAIN_TECHNICAL_DEBT)
     .setDirection(Metric.DIRECTION_WORST)