From 98be739e97a20b7fa14369303e0ee81b17362040 Mon Sep 17 00:00:00 2001 From: Teryk Bellahsene Date: Mon, 9 Mar 2015 17:26:39 +0100 Subject: [PATCH] update property description of default assignee login - SONAR-6154 --- .../java/org/sonar/core/config/CorePropertyDefinitions.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java index 3daafb4af1d..a6711488e2d 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java +++ b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java @@ -63,7 +63,7 @@ public class CorePropertyDefinitions { // ISSUES PropertyDefinition.builder(CoreProperties.DEFAULT_ISSUE_ASSIGNEE) .name("Default Assignee") - .description("Login assigned to a new issue if an assignee has not been found.") + .description("New issues will be assigned to this user each time it is not possible to determine the user who is the author of the issue.") .category(CoreProperties.CATEGORY_GENERAL) .subCategory(CoreProperties.SUBCATEGORY_ISSUES) .onQualifiers(Qualifiers.PROJECT) @@ -163,7 +163,7 @@ public class CorePropertyDefinitions { .subCategory(CoreProperties.SUBCATEGORY_DUPLICATIONS_EXCLUSIONS) .multiValues(true) .build() - )); + )); return defs; } } -- 2.39.5