]> source.dussan.org Git - sonarqube.git/commitdiff
Fix minor quality flaw in FileCache
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 18 May 2016 17:23:01 +0000 (19:23 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 18 May 2016 17:23:01 +0000 (19:23 +0200)
sonar-home/src/main/java/org/sonar/home/cache/FileCache.java

index 67fb154e978f4f2c517df3bde23ae40640493f66..a723cf164de2e70247b5d2a55cd65ce8ad0d0e72 100644 (file)
@@ -91,7 +91,7 @@ public class FileCache {
     return targetFile;
   }
 
-  private void download(Downloader downloader, String filename, File tempFile) {
+  private static void download(Downloader downloader, String filename, File tempFile) {
     try {
       downloader.download(filename, tempFile);
     } catch (IOException e) {