]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-22728 Fix issue raised by the Sonar scan
authorDejan Milisavljevic <dejan.milisavljevic@sonarsource.com>
Fri, 23 Aug 2024 07:07:44 +0000 (09:07 +0200)
committersonartech <sonartech@sonarsource.com>
Mon, 26 Aug 2024 20:03:07 +0000 (20:03 +0000)
sonar-core/src/main/java/org/sonar/core/metric/SoftwareQualitiesMetrics.java

index 6cc635031a014155c6c5f7c429dbd59c040e7240..5738de6bdf6e525a58f8ea413abf94611b6bcc5c 100644 (file)
@@ -171,7 +171,8 @@ public class SoftwareQualitiesMetrics implements Metrics {
   public static final Metric<Long> NEW_SOFTWARE_QUALITY_MAINTAINABILITY_REMEDIATION_EFFORT =
     new Metric.Builder(NEW_SOFTWARE_QUALITY_MAINTAINABILITY_REMEDIATION_EFFORT_KEY, "Software Quality Maintainability Remediation Effort on new code",
       Metric.ValueType.WORK_DUR)
-      .setDescription("Software quality total effort (in minutes) to fix all the maintainability issues on new code on the component and therefore to comply to all the requirements.")
+      .setDescription("Software quality total effort (in minutes) to fix all the maintainability issues on new code on the component " +
+        "and therefore to comply to all the requirements.")
       .setDomain(DOMAIN_MAINTAINABILITY)
       .setDirection(Metric.DIRECTION_WORST)
       .setOptimizedBestValue(true)