diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2024-01-19 14:37:23 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-01-19 20:02:56 +0000 |
commit | e1810d0737b1a1ed620f877c53595b33a5b510f6 (patch) | |
tree | 081eaed5cd54807f6a49c52f73c5bc055237627b /sonar-core | |
parent | 9a023ce04e17a70b06d84d7587f73970fa6f36e2 (diff) | |
download | sonarqube-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.java | 4 |
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) |