Update DFE recursion

This commit is contained in:
Jérémi N ‘EndMove’ 2022-03-19 17:58:35 +01:00
parent 6afc3dbd0a
commit 384d055a3c
Signed by: EndMove
GPG Key ID: 65C4A02E1F5371A4

View File

@ -93,14 +93,14 @@ public class DeepFileEraser {
/** /**
* Erase a file deeply. * Erase a file deeply.
* default deeply level = 5. * default deeply level = 7.
* *
* @param filePath Path of the file. * @param filePath Path of the file.
* *
* @throws DeepFileEraserException Exception if an error occur. * @throws DeepFileEraserException Exception if an error occur.
*/ */
public static void eraseFile(String filePath) throws DeepFileEraserException { public static void eraseFile(String filePath) throws DeepFileEraserException {
eraseFile(filePath, 5); eraseFile(filePath, 7);
} }
/** /**