Fixed RPCDeviceList not forwarding suspend() calls.

This commit is contained in:
Florian Nücke
2022-01-15 09:58:58 +01:00
parent cc34a48437
commit 6a2f55e731

View File

@@ -35,6 +35,13 @@ public final class RPCDeviceList implements RPCDevice {
.collect(Collectors.toList());
}
@Override
public void suspend() {
for (final RPCDevice device : devices) {
device.suspend();
}
}
@Override
public boolean equals(final Object o) {
if (this == o) return true;