diff options
author | Baptiste Mathus <mathus.b@mipih.fr> | 2013-02-18 09:59:02 +0100 |
---|---|---|
committer | Baptiste Mathus <mathus.b@mipih.fr> | 2013-02-18 09:59:02 +0100 |
commit | fd7de24beab0235563001046f52a6870628fc640 (patch) | |
tree | e7af9178ad1c4b924bb5b3a0f367a18da62aa21e /sonar-batch | |
parent | 72bf960a39ec08483e3bf5ab35ea38ab54ee5308 (diff) | |
download | sonarqube-fd7de24beab0235563001046f52a6870628fc640.tar.gz sonarqube-fd7de24beab0235563001046f52a6870628fc640.zip |
Fixing typo.
Diffstat (limited to 'sonar-batch')
-rw-r--r-- | sonar-batch/src/main/java/org/sonar/batch/bootstrap/ProjectLock.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/ProjectLock.java b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/ProjectLock.java index 8a4d2148d6d..144dd25381f 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/ProjectLock.java +++ b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/ProjectLock.java @@ -48,7 +48,7 @@ public class ProjectLock { Semaphores.Semaphore semaphore = acquire(); if (!semaphore.isLocked()) { LOG.error(getErrorMessage(semaphore)); - throw new SonarException("The project is already been analysing."); + throw new SonarException("The project is already being analysed."); } } } |