aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorMatteo Mara <matteo.mara@sonarsource.com>2024-01-19 14:37:23 +0100
committersonartech <sonartech@sonarsource.com>2024-01-19 20:02:56 +0000
commite1810d0737b1a1ed620f877c53595b33a5b510f6 (patch)
tree081eaed5cd54807f6a49c52f73c5bc055237627b /sonar-core
parent9a023ce04e17a70b06d84d7587f73970fa6f36e2 (diff)
downloadsonarqube-e1810d0737b1a1ed620f877c53595b33a5b510f6.tar.gz
sonarqube-e1810d0737b1a1ed620f877c53595b33a5b510f6.zip
SONAR-21195 Update name and description of the analyzer download optimization property
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java b/sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java
index 729bd82740f..f919a44db58 100644
--- a/sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java
+++ b/sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java
@@ -94,8 +94,8 @@ public class ScannerProperties {
.hidden()
.build(),
PropertyDefinition.builder(PLUGIN_LOADING_OPTIMIZATION_KEY)
- .name("Enable scanner plugin loading optimization")
- .description("When enabled, scanners will only download plugins required for detected languages.")
+ .name("Analyzers loading optimization")
+ .description("When enabled, scanners will only download analyzers required for detected languages.")
.category(CoreProperties.CATEGORY_GENERAL)
.subCategory("Performance")
.type(BOOLEAN)