2020-08-27 12:24:21 +08:00
|
|
|
package com.proxgrind.devices;
|
|
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
|
|
public class EmptyDevice implements Device {
|
|
|
|
|
@Override
|
|
|
|
|
public boolean working() throws IOException {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean close() throws IOException {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|