]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2291 fix bad message
authorSimon Brandhof <simon.brandhof@gmail.com>
Mon, 11 Feb 2013 16:11:10 +0000 (17:11 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Mon, 11 Feb 2013 16:11:10 +0000 (17:11 +0100)
sonar-home/src/main/java/org/sonar/home/cache/FileCache.java

index c480e6c9491aac75c72d9ac63f3389d250d15fc1..1fd9fef7ba3e1545225968e114a8198487a5ceb3 100644 (file)
@@ -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) {