You've already forked ChameleonBLEAPI
mirror of
https://github.com/RfidResearchGroup/ChameleonBLEAPI.git
synced 2026-05-12 11:20:47 -07:00
16 lines
304 B
Java
16 lines
304 B
Java
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;
|
|
}
|
|
}
|