need to fix all of these TODOs

This commit is contained in:
2022-09-29 19:39:37 +02:00
parent 7c5308429c
commit f824004897
11 changed files with 67 additions and 114 deletions

View File

@ -142,14 +142,15 @@ ReturnValue_t TestAssembly::initialize() {
handler0->setParentQueue(this->getCommandQueue());
handler1->setParentQueue(this->getCommandQueue());
result = registerChild(deviceHandler0Id);
if (result != returnvalue::OK) {
return result;
}
result = registerChild(deviceHandler1Id);
if (result != returnvalue::OK) {
return result;
}
// TODO: Fix this
// result = registerChild(deviceHandler0Id);
// if (result != returnvalue::OK) {
// return result;
// }
// result = registerChild(deviceHandler1Id);
// if (result != returnvalue::OK) {
// return result;
// }
return result;
}