From e1810d0737b1a1ed620f877c53595b33a5b510f6 Mon Sep 17 00:00:00 2001 From: Matteo Mara Date: Fri, 19 Jan 2024 14:37:23 +0100 Subject: [PATCH] SONAR-21195 Update name and description of the analyzer download optimization property --- .../main/java/org/sonar/core/config/ScannerProperties.java | 4 ++-- 1 file 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) -- 2.39.5