Formatting

This commit is contained in:
2025-09-28 11:05:04 -04:00
parent 5b2354bfe0
commit 7ab6e7b2c3
+1 -2
View File
@@ -116,7 +116,6 @@ void DeviceManager::newDeviceAttachmentSpecInd(
std::make_shared<DeviceAttachmentSpec>(*spec));
}
// Find or create the Device for this spec
bool deviceExists = false;
std::shared_ptr<Device> device = nullptr;
for (const auto& existingDevice : devices)
@@ -149,7 +148,7 @@ void DeviceManager::newDeviceAttachmentSpecInd(
}
}
// Consistency check: if DeviceRole exists, both spec and device must also exist
// If DeviceRole exists, both spec and device must also exist
if (deviceRoleExists)
{
if (!specExists || !deviceExists)