]> source.dussan.org Git - sonarqube.git/commitdiff
Fix quality flaws
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 26 Oct 2017 12:57:47 +0000 (14:57 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 26 Oct 2017 14:21:21 +0000 (16:21 +0200)
server/sonar-db-dao/src/main/java/org/sonar/db/component/ComponentDto.java
sonar-plugin-api/src/main/java/org/sonar/api/config/EmailSettings.java

index 230515e95c0cd2db626362da4c34abcf7de6518f..9e69d55f2d974cb189088a131406c9d59f41851e 100644 (file)
@@ -529,7 +529,6 @@ public class ComponentDto {
     return copy;
   }
 
-  // TODO Use it in branch plugin
   public static String generateBranchKey(String componentKey, String branch) {
     return format("%s%s%s", componentKey, BRANCH_KEY_SEPARATOR, branch);
   }
index db04d12b2855ac427c0f74709f3e87b2e2daa8cb..69117521b1d5d6f782edf4e4ebc41d5018208beb 100644 (file)
@@ -147,14 +147,14 @@ public class EmailSettings {
         .build(),
       PropertyDefinition.builder(FROM)
         .name("From address")
-        .description("Emails will come from this address. For example - \"noreply@sonarsource.com\". Note that server may ignore this setting.")
+        .description("Emails will come from this address. For example - \"noreply@sonarsource.com\". Note that the mail server may ignore this setting.")
         .defaultValue(FROM_DEFAULT)
         .category(CATEGORY_GENERAL)
         .subCategory(SUBCATEGORY_EMAIL)
         .build(),
       PropertyDefinition.builder(FROM_NAME)
         .name("From name")
-        .description("Emails will come from this address name. For example - \"SonarQube\". Note that server may ignore this setting.")
+        .description("Emails will come from this address name. For example - \"SonarQube\". Note that the mail server may ignore this setting.")
         .defaultValue(FROM_NAME_DEFAULT)
         .category(CATEGORY_GENERAL)
         .subCategory(SUBCATEGORY_EMAIL)