no message

This commit is contained in:
2023-11-20 22:29:38 +03:00
parent 577803515e
commit e43feb9ab5
8 changed files with 27 additions and 9 deletions

View File

@@ -39,7 +39,7 @@ public class PublishTest extends PublishServerObject<TestingServer, Test> {
}
@Override
protected void performPreparation() throws Exception {
target.description = Utils.ReplaceForbiddenSymbols(target.description);
target.description = Utils.ReplaceForbiddenSymbols(target.description);
}
@Override
protected boolean canStart(Object... args) throws Exception {
@@ -70,4 +70,15 @@ public class PublishTest extends PublishServerObject<TestingServer, Test> {
super.performDone();
passes.get(PassCode_2021.PublishTestProject).Do(project, pk);
}
@Override
protected void performFinish() throws Exception {
if (from_current_project)
super.performFinish();
else disconnect();
}
@Override
protected void showDone() throws Exception {
if (from_current_project)
super.showDone();
}
}