aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-home
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-06-27 09:51:40 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-06-27 09:51:40 +0200
commite0a8d965788b063262f866062c7bc80d5e582654 (patch)
tree367471a055c45ed3997bcc8314d739ec06583f64 /sonar-home
parent655df791c25001f56578ef00643fd0b5ae935357 (diff)
downloadsonarqube-e0a8d965788b063262f866062c7bc80d5e582654.tar.gz
sonarqube-e0a8d965788b063262f866062c7bc80d5e582654.zip
Fix some Quality flaws
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 a723cf164de..5f341985bf7 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
@@ -32,7 +32,7 @@ import javax.annotation.CheckForNull;
public class FileCache {
/** Maximum loop count when creating temp directories. */
- private static final int TEMP_DIR_ATTEMPTS = 10000;
+ private static final int TEMP_DIR_ATTEMPTS = 10_000;
private final File dir;
private final File tmpDir;