diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-11 17:11:10 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-11 17:11:10 +0100 |
commit | 7159c498e76af5c11f6d92305f57d2201e462434 (patch) | |
tree | 91d99d3d2c749e1fd3c768ffbf5734e94f53f664 /sonar-home | |
parent | 941756e4da590911aab8d3950b0eea5e30752042 (diff) | |
download | sonarqube-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.java | 3 |
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) { |