[bluetooth.radoneye] Fix modifier order (#14830)
These modifiers are out of order with the JLS suggestions. Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
parent
6dfd6b0120
commit
827d4d7dc9
|
@ -37,7 +37,7 @@ import org.slf4j.LoggerFactory;
|
||||||
* @author Peter Obel - Initial contribution
|
* @author Peter Obel - Initial contribution
|
||||||
*/
|
*/
|
||||||
@NonNullByDefault
|
@NonNullByDefault
|
||||||
abstract public class AbstractRadoneyeHandler extends BeaconBluetoothHandler {
|
public abstract class AbstractRadoneyeHandler extends BeaconBluetoothHandler {
|
||||||
|
|
||||||
private static final int CHECK_PERIOD_SEC = 10;
|
private static final int CHECK_PERIOD_SEC = 10;
|
||||||
|
|
||||||
|
@ -59,13 +59,13 @@ abstract public class AbstractRadoneyeHandler extends BeaconBluetoothHandler {
|
||||||
private enum ServiceState {
|
private enum ServiceState {
|
||||||
NOT_RESOLVED,
|
NOT_RESOLVED,
|
||||||
RESOLVING,
|
RESOLVING,
|
||||||
RESOLVED,
|
RESOLVED
|
||||||
}
|
}
|
||||||
|
|
||||||
private enum ReadState {
|
private enum ReadState {
|
||||||
IDLE,
|
IDLE,
|
||||||
READING,
|
READING,
|
||||||
WRITING,
|
WRITING
|
||||||
}
|
}
|
||||||
|
|
||||||
public AbstractRadoneyeHandler(Thing thing) {
|
public AbstractRadoneyeHandler(Thing thing) {
|
||||||
|
@ -327,5 +327,5 @@ abstract public class AbstractRadoneyeHandler extends BeaconBluetoothHandler {
|
||||||
*
|
*
|
||||||
* @param is the content of the bluetooth characteristic
|
* @param is the content of the bluetooth characteristic
|
||||||
*/
|
*/
|
||||||
abstract protected void updateChannels(int[] is);
|
protected abstract void updateChannels(int[] is);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue