fixed and improved

This commit is contained in:
2023-12-05 16:03:42 +03:00
parent 0bd2d3fe36
commit 5e229fcb68
5 changed files with 34 additions and 20 deletions

View File

@@ -8,6 +8,7 @@ public:
CompilationSupervisor() {
this->init("compilationTasks", 4);
}
CompilationTask* getTaskById(long task_id) {
for (long i = 0; i < getLength(); ++i) {
CompilationTask* task = get(i);
@@ -16,7 +17,8 @@ public:
}
return NULL;
}
virtual String getStatePrefix() {
String getStatePrefix() override {
return String("Compilation");
}
};