]> source.dussan.org Git - sonarqube.git/commitdiff
update property description of default assignee login - SONAR-6154
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Mon, 9 Mar 2015 16:26:39 +0000 (17:26 +0100)
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Mon, 9 Mar 2015 16:26:39 +0000 (17:26 +0100)
sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java

index 3daafb4af1d0b1922a13bff41decec71eb846de6..a6711488e2ddea8dad9f4713a6f97ad4fc531515 100644 (file)
@@ -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;
   }
 }