]> source.dussan.org Git - sonarqube.git/commitdiff
[SONAR-16198] update text in the administration panel regarding common repositories
authorMatteo Mara <matteo.mara@sonarsource.com>
Fri, 3 Mar 2023 16:01:35 +0000 (17:01 +0100)
committersonartech <sonartech@sonarsource.com>
Fri, 3 Mar 2023 20:02:59 +0000 (20:02 +0000)
sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java

index 1bce945117944e1cd90d3ed88596dc7539d142a0..1966e73c905165876e4e326c098519cfbfecea72 100644 (file)
@@ -19,7 +19,6 @@
  */
 package org.sonar.core.config;
 
-import com.google.common.collect.ImmutableList;
 import java.util.List;
 import org.sonar.api.CoreProperties;
 import org.sonar.api.PropertyType;
@@ -54,14 +53,12 @@ public final class IssueExclusionProperties {
   public static final String PATTERNS_ALLFILE_KEY = EXCLUSION_KEY_PREFIX + ALLFILE_SUFFIX;
   public static final String FILE_REGEXP = "fileRegexp";
 
-  public static final int LARGE_SIZE = 40;
-
   private IssueExclusionProperties() {
     // only static
   }
 
   public static List<PropertyDefinition> all() {
-    return ImmutableList.of(
+    return List.of(
       PropertyDefinition.builder(PATTERNS_MULTICRITERIA_EXCLUSION_KEY)
         .category(CoreProperties.CATEGORY_EXCLUSIONS)
         .subCategory(SUB_CATEGORY_IGNORE_ISSUES)
@@ -86,7 +83,7 @@ public final class IssueExclusionProperties {
         .category(CoreProperties.CATEGORY_EXCLUSIONS)
         .subCategory(SUB_CATEGORY_IGNORE_ISSUES)
         .name("Ignore Issues in Blocks")
-        .description("Patterns to ignore all issues (except the ones from the common repository) on specific blocks of code, " +
+        .description("Patterns to ignore all issues on specific blocks of code, " +
           "while continuing to scan and mark issues on the remainder of the file.")
         .onQualifiers(Qualifiers.PROJECT)
         .index(2)
@@ -107,7 +104,7 @@ public final class IssueExclusionProperties {
         .category(CoreProperties.CATEGORY_EXCLUSIONS)
         .subCategory(SUB_CATEGORY_IGNORE_ISSUES)
         .name("Ignore Issues on Files")
-        .description("Patterns to ignore all issues (except the ones from the common repository) on files that contain a block of code matching a given regular expression.")
+        .description("Patterns to ignore all issues on files that contain a block of code matching a given regular expression.")
         .onQualifiers(Qualifiers.PROJECT)
         .index(1)
         .fields(