Fix formatting issue

This commit is contained in:
prathabanKavin 2024-12-03 09:44:44 +05:30
parent f70661dcd2
commit a39ab9df81

View File

@ -720,10 +720,10 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
.collect(Collectors.toSet());
Set<DeviceIdentifier> skippedDevices = subscribingDeviceIdHolder.getSkippedDevices().keySet();
if (skippedDevices.containsAll(deviceIdentifiers) && deviceIdentifiers.containsAll(skippedDevices)) {
String msg = "All devices in the subscription have pending operations for this application.";
log.error(msg);
throw new BadRequestException(msg);
}
String msg = "All devices in the subscription have pending operations for this application.";
log.error(msg);
throw new BadRequestException(msg);
}
}
/**