From 384d055a3c6681d100264c288d11e933258f30ed Mon Sep 17 00:00:00 2001 From: EndMove Date: Sat, 19 Mar 2022 17:58:35 +0100 Subject: [PATCH] Update DFE recursion --- app/src/main/java/lightcontainer/utils/DeepFileEraser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/lightcontainer/utils/DeepFileEraser.java b/app/src/main/java/lightcontainer/utils/DeepFileEraser.java index 9557f38..3a6d6a9 100644 --- a/app/src/main/java/lightcontainer/utils/DeepFileEraser.java +++ b/app/src/main/java/lightcontainer/utils/DeepFileEraser.java @@ -93,14 +93,14 @@ public class DeepFileEraser { /** * Erase a file deeply. - * default deeply level = 5. + * default deeply level = 7. * * @param filePath Path of the file. * * @throws DeepFileEraserException Exception if an error occur. */ public static void eraseFile(String filePath) throws DeepFileEraserException { - eraseFile(filePath, 5); + eraseFile(filePath, 7); } /**