no message

This commit is contained in:
2024-10-14 11:48:44 +03:00
parent 69173eb2b8
commit 334a8de3bf
6 changed files with 6 additions and 11 deletions

View File

@@ -203,6 +203,7 @@ public class Pass<T> {
next.createStack_r(ToDo, ToPrint);
}
}
//todo обращение к пропертиес как то пофиксить
public boolean Do(Object... args) {
Stack<Pass> ToDo = new Stack<>();
Vector<String> ToPrint = new Vector<>();
@@ -263,7 +264,6 @@ public class Pass<T> {
if (UI_.isActive()) FocusBeforeStart();
if (canStart(args)) {
PerformPreparation();
//todo тут должна быть вилка на анимацию?
if (UI_.isActive() && needsAnimation()) {
animation_sem = new Semaphore(1);
animation_sem.acquire();
@@ -320,11 +320,7 @@ public class Pass<T> {
CheckException(ex);
}
}
//---
// UI.Info(this.getClass().getSimpleName()+" +");
PerformFinish();
// UI.Info(this.getClass().getSimpleName()+" ++");
//---
if ((state != PassState.Crushed) && validate()) {
state = PassState.Done;
PerformDone();