aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch/src
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2015-11-04 10:44:17 +0100
committerDuarte Meneses <duarte.meneses@sonarsource.com>2015-11-09 16:58:02 +0100
commit347978968e87735dacb333f72e32f20b8a7a3163 (patch)
tree1183640214e58abeca0ab8e9617ceecf5780d615 /sonar-batch/src
parent603295776739bbe6658786d2e677a3470fbd7544 (diff)
downloadsonarqube-347978968e87735dacb333f72e32f20b8a7a3163.tar.gz
sonarqube-347978968e87735dacb333f72e32f20b8a7a3163.zip
Fix typos
Diffstat (limited to 'sonar-batch/src')
-rw-r--r--sonar-batch/src/main/java/org/sonar/batch/bootstrap/GlobalSettings.java2
-rw-r--r--sonar-batch/src/main/java/org/sonar/batch/cache/ProjectCacheSynchronizer.java2
-rw-r--r--sonar-batch/src/test/java/org/sonar/batch/bootstrap/GlobalSettingsTest.java6
3 files changed, 5 insertions, 5 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/GlobalSettings.java b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/GlobalSettings.java
index 921e0f8f902..fea6157d8d6 100644
--- a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/GlobalSettings.java
+++ b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/GlobalSettings.java
@@ -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
diff --git a/sonar-batch/src/main/java/org/sonar/batch/cache/ProjectCacheSynchronizer.java b/sonar-batch/src/main/java/org/sonar/batch/cache/ProjectCacheSynchronizer.java
index 3487247ae2b..9ff8b6bb4ed 100644
--- a/sonar-batch/src/main/java/org/sonar/batch/cache/ProjectCacheSynchronizer.java
+++ b/sonar-batch/src/main/java/org/sonar/batch/cache/ProjectCacheSynchronizer.java
@@ -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) {
diff --git a/sonar-batch/src/test/java/org/sonar/batch/bootstrap/GlobalSettingsTest.java b/sonar-batch/src/test/java/org/sonar/batch/bootstrap/GlobalSettingsTest.java
index 7b0f3fc534e..ce3a3811173 100644
--- a/sonar-batch/src/test/java/org/sonar/batch/bootstrap/GlobalSettingsTest.java
+++ b/sonar-batch/src/test/java/org/sonar/batch/bootstrap/GlobalSettingsTest.java
@@ -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."
);
}
}