fix shadowing warning
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
This commit is contained in:
parent
b3cdb05214
commit
ec8c5b7a5c
@ -115,13 +115,9 @@ void ThermalController::performControlOperation() {
|
||||
|
||||
{
|
||||
PoolReadGuard pg(&heaterInfo);
|
||||
if (pg.getReadResult() == returnvalue::OK) {
|
||||
{
|
||||
PoolReadGuard pg(¤tVecPdu2);
|
||||
if (pg.getReadResult() == returnvalue::OK) {
|
||||
heaterInfo.heaterCurrent.value = currentVecPdu2.value[PDU2::Channels::TCS_HEATER_IN];
|
||||
}
|
||||
}
|
||||
PoolReadGuard pg2(¤tVecPdu2);
|
||||
if (pg.getReadResult() == returnvalue::OK and pg2.getReadResult() == returnvalue::OK) {
|
||||
heaterInfo.heaterCurrent.value = currentVecPdu2.value[PDU2::Channels::TCS_HEATER_IN];
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user