From: Teryk Bellahsene Date: Mon, 9 Mar 2015 16:26:39 +0000 (+0100) Subject: update property description of default assignee login - SONAR-6154 X-Git-Tag: 5.2-RC1~2623 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=98be739e97a20b7fa14369303e0ee81b17362040;p=sonarqube.git update property description of default assignee login - SONAR-6154 --- 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; } }