aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-home
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-02-11 17:11:10 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2013-02-11 17:11:10 +0100
commit7159c498e76af5c11f6d92305f57d2201e462434 (patch)
tree91d99d3d2c749e1fd3c768ffbf5734e94f53f664 /sonar-home
parent941756e4da590911aab8d3950b0eea5e30752042 (diff)
downloadsonarqube-7159c498e76af5c11f6d92305f57d2201e462434.tar.gz
sonarqube-7159c498e76af5c11f6d92305f57d2201e462434.zip
SONAR-2291 fix bad message
Diffstat (limited to 'sonar-home')
-rw-r--r--sonar-home/src/main/java/org/sonar/home/cache/FileCache.java3
1 files changed, 1 insertions, 2 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 c480e6c9491..1fd9fef7ba3 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
@@ -107,8 +107,7 @@ public class FileCache {
// Check if the file was cached by another process during download
if (!targetFile.exists()) {
log.warn(String.format("Unable to rename %s to %s", sourceFile.getAbsolutePath(), targetFile.getAbsolutePath()));
- log.warn(String.format("A copy/delete will be tempted but with no garantee of atomicity. It's recommended that " +
- "user cache and temp folders are located on the same hard drive partition. Please check $SONAR_USER_HOME or -Dsonar.userHome"));
+ log.warn(String.format("A copy/delete will be tempted but with no garantee of atomicity"));
try {
FileUtils.moveFile(sourceFile, targetFile);
} catch (IOException e) {