Fixed RPCDeviceList not forwarding suspend() calls.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user