diff options
author | Mathieu Suen <mathieu.suen@sonarsource.com> | 2020-01-28 16:59:33 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2020-02-11 20:46:11 +0100 |
commit | ec64094599252553e55efa348516ff36477bce57 (patch) | |
tree | 8c0d987bb2bd94a30ed44cf29a6da58da31dfe46 /sonar-plugin-api/src | |
parent | 049128b4f1b226d15ef12802feb497d7edb7baed (diff) | |
download | sonarqube-ec64094599252553e55efa348516ff36477bce57.tar.gz sonarqube-ec64094599252553e55efa348516ff36477bce57.zip |
SONAR-12961 review in project cards
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java | 4 |
1 files changed, 2 insertions, 2 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 e31e6e85d3d..2f2e58de4c3 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 @@ -1563,7 +1563,7 @@ public final class CoreMetrics { * @since 8.2 */ public static final Metric<Integer> SECURITY_HOTSPOTS_REVIEWED = new Metric.Builder(SECURITY_HOTSPOTS_REVIEWED_KEY, "Security Hotspots Reviewed", Metric.ValueType.PERCENT) - .setDescription("Security Hotspots Reviewed") + .setDescription("Percentage of Security Hotspots Reviewed") .setDomain(DOMAIN_SECURITY_REVIEW) .setDirection(Metric.DIRECTION_BETTER) .setQualitative(true) @@ -1581,7 +1581,7 @@ public final class CoreMetrics { */ public static final Metric<Integer> NEW_SECURITY_HOTSPOTS_REVIEWED = new Metric.Builder(NEW_SECURITY_HOTSPOTS_REVIEWED_KEY, "Security Hotspots Reviewed on New Code", Metric.ValueType.PERCENT) - .setDescription("Security Hotspots Reviewed on New Code") + .setDescription("Percentage of Security Hotspots Reviewed on New Code") .setDomain(DOMAIN_SECURITY_REVIEW) .setDirection(Metric.DIRECTION_BETTER) .setDeleteHistoricalData(true) |