]> source.dussan.org Git - sonarqube.git/commitdiff
Fix typos
authorDuarte Meneses <duarte.meneses@sonarsource.com>
Wed, 4 Nov 2015 09:44:17 +0000 (10:44 +0100)
committerDuarte Meneses <duarte.meneses@sonarsource.com>
Mon, 9 Nov 2015 15:58:02 +0000 (16:58 +0100)
sonar-batch/src/main/java/org/sonar/batch/bootstrap/GlobalSettings.java
sonar-batch/src/main/java/org/sonar/batch/cache/ProjectCacheSynchronizer.java
sonar-batch/src/test/java/org/sonar/batch/bootstrap/GlobalSettingsTest.java

index 921e0f8f902903deb80fa2a89ea5aee330cb83fd..fea6157d8d6abf853a11d7d4e995de44d5f9daed 100644 (file)
@@ -33,7 +33,7 @@ public class GlobalSettings extends Settings {
 
   private static final Logger LOG = LoggerFactory.getLogger(GlobalSettings.class);
 
-  private static final String JDBC_SPECIFIC_MESSAGE = "There is no more DB connection to the SQ database. It will be ignored.";
+  private static final String JDBC_SPECIFIC_MESSAGE = "It will be ignored. There is no longer any DB connection to the SQ database.";
   /**
    * A map of dropped properties as key and specific message to display for that property
    * (what will happen, what should the user do, ...) as a value
index 3487247ae2b95f41dd59fd8705a72b41d038263f..9ff8b6bb4ed36e3bf0080e6a22e3b0392c3cb727 100644 (file)
@@ -112,7 +112,7 @@ public class ProjectCacheSynchronizer {
 
   private void saveStatus() {
     cacheStatus.save();
-    LOG.info("-- Succesfully synchronized project cache");
+    LOG.info("-- Successfully synchronized project cache");
   }
 
   private void loadData(String projectKey) {
index 7b0f3fc534ebedef991ee29ba2b4ebcfd0d85a68..ce3a3811173d1b2709aacf4c95ee608eac22846e 100644 (file)
@@ -70,9 +70,9 @@ public class GlobalSettingsTest {
     new GlobalSettings(bootstrapProps, new PropertyDefinitions(), globalRef, mode);
 
     assertThat(logTester.logs(LoggerLevel.WARN)).containsOnly(
-      "Property 'sonar.jdbc.url' is not supported any more. There is no more DB connection to the SQ database. It will be ignored.",
-      "Property 'sonar.jdbc.username' is not supported any more. There is no more DB connection to the SQ database. It will be ignored.",
-      "Property 'sonar.jdbc.password' is not supported any more. There is no more DB connection to the SQ database. It will be ignored."
+      "Property 'sonar.jdbc.url' is not supported any more. It will be ignored. There is no longer any DB connection to the SQ database.",
+      "Property 'sonar.jdbc.username' is not supported any more. It will be ignored. There is no longer any DB connection to the SQ database.",
+      "Property 'sonar.jdbc.password' is not supported any more. It will be ignored. There is no longer any DB connection to the SQ database."
       );
   }
 }