Add files via upload

This commit is contained in:
DXL
2020-08-27 12:24:21 +08:00
committed by GitHub
parent 32d03eaa86
commit 31c0a9c8c1
6 changed files with 1115 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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;
}
}