no message

This commit is contained in:
2025-02-12 14:22:11 +03:00
parent ede6438fbf
commit b80bea4c1b
7 changed files with 37 additions and 25 deletions

View File

@@ -265,27 +265,6 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
roText.setText(object.getOutput());
reText.setText(object.getErrors());
stsText.setText(object.getStatistic());
switch (object.compilation_state){
case Done:
case AbortedByTimeout:
compilationTabs.setSelectedIndex(0);
break;
default:
compilationTabs.setSelectedIndex(1);
break;
}
switch (object.state){
case Done:
case Canceled:
case Inactive:
case DoneWithErrors:
case AbortedByTimeout:
runTabs.setSelectedIndex(0);
break;
default:
runTabs.setSelectedIndex(1);
break;
}
}
@Override
public void ShowNoCurrentDVMTask() {