no message

This commit is contained in:
2024-10-14 12:54:52 +03:00
parent e1627badd3
commit e64a4f4c47
45 changed files with 211 additions and 200 deletions

View File

@@ -1,5 +1,5 @@
package _VisualDVM.Passes.All;
import _VisualDVM.Utils;
import Common.Utils.Utils_;
import Common.Passes.Pass;
import java.io.File;
@@ -27,7 +27,7 @@ public class UnzipFolderPass<T> extends Pass<T> {
@Override
protected void performPreparation() throws Exception {
if (clean_dst)
Utils.forceDeleteWithCheck(new File(dst));
Utils_.forceDeleteWithCheck(new File(dst));
}
@Override
protected void body() throws Exception {