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

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

@@ -21,8 +21,6 @@ public class UnzipFolderPass<T> extends Pass_2021<T> {
protected boolean canStart(Object... args) {
src = (String) args[0];
dst = (String) args[1];
System.out.println("src=" + src);
System.out.println("dst=" + dst);
clean_dst = args.length > 2 && (boolean) args[2];
return true;
}