diff --git a/.idea/artifacts/VisualSapfor_jar.xml b/.idea/artifacts/VisualSapfor_jar.xml
index c7a9ffa0..cfe04af4 100644
--- a/.idea/artifacts/VisualSapfor_jar.xml
+++ b/.idea/artifacts/VisualSapfor_jar.xml
@@ -11,6 +11,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 59161ada..c7e69f6f 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -7,13 +7,10 @@
+
-
-
-
-
-
-
+
+
@@ -91,7 +88,7 @@
-
+
@@ -104,11 +101,11 @@
+
-
diff --git a/src/Visual_DVM_2021/Passes/All/TestPass.java b/src/Visual_DVM_2021/Passes/All/TestPass.java
index 79938de8..7d6b1063 100644
--- a/src/Visual_DVM_2021/Passes/All/TestPass.java
+++ b/src/Visual_DVM_2021/Passes/All/TestPass.java
@@ -1,10 +1,5 @@
package Visual_DVM_2021.Passes.All;
-import Common.Utils.Utils;
-import Visual_DVM_2021.Passes.PassCode_2021;
import Visual_DVM_2021.Passes.Pass_2021;
-
-import java.io.File;
-import java.nio.file.Paths;
public class TestPass extends Pass_2021 {
@Override
protected boolean needsAnimation() {
@@ -12,36 +7,6 @@ public class TestPass extends Pass_2021 {
}
@Override
protected void body() throws Exception {
- File[] bugsFiles = Paths.get(System.getProperty("user.dir"), "Bugs").toFile().listFiles();
- if (bugsFiles != null) {
- for (File archive : bugsFiles) {
- if (archive.isFile()) {
- //----
- File tmp = Utils.getTempFileName("archive");
- //--
- Pass_2021 unzip = passes.get(PassCode_2021.UnzipFolderPass);
- unzip.Do(archive.getAbsolutePath(), tmp.getAbsolutePath(), false);
- //--
- File project = null;
- //--
- File[] files = tmp.listFiles();
- if (files != null) {
- for (File file : files) {
- if (file.isDirectory())
- project = file;
- }
- }
- if (project != null) {
- //--
- Utils.deleteFilesByExtensions(project, "dep", "opt", "err", "proj");
- //--
- //на самом деле тут должен быть archive
- Utils.forceDeleteWithCheck(archive);
- Pass_2021 zip = passes.get(PassCode_2021.ZipFolderPass);
- zip.Do(project.getAbsolutePath(), archive.getAbsolutePath());
- }
- }
- }
- }
+ //--
}
}