удаление отладочной печати сравнения и не только

This commit is contained in:
2024-07-22 00:57:05 +03:00
parent 3374c9783b
commit 53ad5e637f
76 changed files with 78 additions and 328 deletions

View File

@@ -216,7 +216,6 @@ public class Precompilation extends Pass_2021<db_project_info> {
}
@Override
protected void performDone() throws Exception {
System.out.println("DONE");
}
@Override
protected void performFinish() throws Exception {
@@ -248,10 +247,8 @@ public class Precompilation extends Pass_2021<db_project_info> {
if (Global.isWindows) {
if (!name_to_kill.isEmpty()) {
killed = true;
System.out.println("time to kill...");
Process killer = Runtime.getRuntime().exec("taskkill /FI \"IMAGENAME eq " + name_to_kill + "\" /F /T");
killer.waitFor();
System.out.println("DEAD");
}
} else {
UI.Info("Прерывание процессов под Linux не реализовано");