aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorDejan Milisavljevic <dejan.milisavljevic@sonarsource.com>2024-08-23 09:07:44 +0200
committersonartech <sonartech@sonarsource.com>2024-08-26 20:03:07 +0000
commit2cdbc671a17333c72441e03af27e6d6b3e63f6fc (patch)
treef256c76cf822ffc3eb0c3a2116259b87b91fa434 /sonar-core
parentfbc2f2ef448d29e7900285c2b764c0dad815eab4 (diff)
downloadsonarqube-2cdbc671a17333c72441e03af27e6d6b3e63f6fc.tar.gz
sonarqube-2cdbc671a17333c72441e03af27e6d6b3e63f6fc.zip
SONAR-22728 Fix issue raised by the Sonar scan
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/metric/SoftwareQualitiesMetrics.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/metric/SoftwareQualitiesMetrics.java b/sonar-core/src/main/java/org/sonar/core/metric/SoftwareQualitiesMetrics.java
index 6cc635031a0..5738de6bdf6 100644
--- a/sonar-core/src/main/java/org/sonar/core/metric/SoftwareQualitiesMetrics.java
+++ b/sonar-core/src/main/java/org/sonar/core/metric/SoftwareQualitiesMetrics.java
@@ -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)