aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-home
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2015-06-18 18:30:50 +0200
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2015-06-18 18:30:50 +0200
commit7cff3b0b66694aea1186d33816882fc5c3ce8fe9 (patch)
treeb04af5bfb26a8285b20bcd36931c6d08094742e9 /sonar-home
parent47bad47ae07d3ffc895f3e76261d637073c57981 (diff)
downloadsonarqube-7cff3b0b66694aea1186d33816882fc5c3ce8fe9.tar.gz
sonarqube-7cff3b0b66694aea1186d33816882fc5c3ce8fe9.zip
Revert "Fix quality flaws"
This reverts commit 47bad47ae07d3ffc895f3e76261d637073c57981 which breaks the compiltation of SQ
Diffstat (limited to 'sonar-home')
-rw-r--r--sonar-home/src/main/java/org/sonar/home/cache/FileCache.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-home/src/main/java/org/sonar/home/cache/FileCache.java b/sonar-home/src/main/java/org/sonar/home/cache/FileCache.java
index 5998b97a2c5..3b681edcff1 100644
--- a/sonar-home/src/main/java/org/sonar/home/cache/FileCache.java
+++ b/sonar-home/src/main/java/org/sonar/home/cache/FileCache.java
@@ -106,7 +106,7 @@ public class FileCache {
// Check if the file was cached by another process during download
if (!rename && !targetFile.exists()) {
log.warn(String.format("Unable to rename %s to %s", sourceFile.getAbsolutePath(), targetFile.getAbsolutePath()));
- log.warn("A copy/delete will be tempted but with no guarantee of atomicity");
+ log.warn(String.format("A copy/delete will be tempted but with no garantee of atomicity"));
try {
Files.move(sourceFile.toPath(), targetFile.toPath());
} catch (IOException e) {