I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit aa098ac8 authored by zzz's avatar zzz
Browse files

dont log deletion of deletelist.txt

parent bbbbfe24
No related branches found
No related tags found
No related merge requests found
......@@ -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");
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment