aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core/src/main/java
diff options
context:
space:
mode:
authorMatteo Mara <matteo.mara@sonarsource.com>2023-03-03 17:01:35 +0100
committersonartech <sonartech@sonarsource.com>2023-03-03 20:02:59 +0000
commit7e3df081b80da28d4e903f0694414eed91cbf3a0 (patch)
tree258080a8b96ebcd9141a532f4410291076df4a13 /sonar-core/src/main/java
parentbec5515eab682f114931d1badfc726d021fc5dbd (diff)
downloadsonarqube-7e3df081b80da28d4e903f0694414eed91cbf3a0.tar.gz
sonarqube-7e3df081b80da28d4e903f0694414eed91cbf3a0.zip
[SONAR-16198] update text in the administration panel regarding common repositories
Diffstat (limited to 'sonar-core/src/main/java')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java b/sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java
index 1bce9451179..1966e73c905 100644
--- a/sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java
+++ b/sonar-core/src/main/java/org/sonar/core/config/IssueExclusionProperties.java
@@ -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(