From aa098ac80058fb9a1e3b3ab2071b4d6042cb3962 Mon Sep 17 00:00:00 2001
From: zzz <zzz@mail.i2p>
Date: Sun, 5 Feb 2017 14:58:47 +0000
Subject: [PATCH] dont log deletion of deletelist.txt

---
 .../java/src/net/i2p/router/tasks/InstallUpdate.java  | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/router/java/src/net/i2p/router/tasks/InstallUpdate.java b/router/java/src/net/i2p/router/tasks/InstallUpdate.java
index 91456e8dd6..aa706c126f 100644
--- a/router/java/src/net/i2p/router/tasks/InstallUpdate.java
+++ b/router/java/src/net/i2p/router/tasks/InstallUpdate.java
@@ -202,16 +202,17 @@ public class InstallUpdate {
                 if (df.isAbsolute())
                     continue;
                 df = new File(context.getBaseDir(), fl);
-                if (df.exists() && !df.isDirectory()) {
+                if (df.exists() && df.isFile()) {
                     if (df.delete())
                         System.out.println("INFO: File [" + fl + "] deleted");
                 }
             }
-        } catch (IOException ioe) {}
-        finally {
+        } catch (IOException ioe) {
+        } finally {
             if (in != null) try { in.close(); } catch(IOException ioe) {}
-            if (deleteFile.delete())
-                System.out.println("INFO: File [" + DELETE_FILE + "] deleted");
+            if (deleteFile.delete()) {
+                //System.out.println("INFO: File [" + DELETE_FILE + "] deleted");
+            }
         }
     }
 }
-- 
GitLab