]> source.dussan.org Git - sonarqube.git/commitdiff
Fix quality flaw
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Tue, 23 Sep 2014 10:13:36 +0000 (12:13 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Tue, 23 Sep 2014 10:13:36 +0000 (12:13 +0200)
server/sonar-process/src/main/java/org/sonar/process/ProcessCommands.java

index 417d62cb5bff5a9649c363d39513727d692c0cf1..d79f0f92899359e7a2bc18e7c884549b3e32b442 100644 (file)
@@ -107,11 +107,9 @@ public class ProcessCommands {
   }
 
   private void deleteFile(File file) {
-    if (file.exists()) {
-      if (!file.delete()) {
-        throw new MessageException(String.format(
-          "Fail to delete file %s. Please check that no SonarQube process is alive", file));
-      }
+    if (file.exists() && !file.delete()) {
+      throw new MessageException(String.format(
+        "Fail to delete file %s. Please check that no SonarQube process is alive", file));
     }
   }
 }