[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:
Wouter Born 2023-04-16 23:03:23 +02:00 committed by GitHub
parent 6dfd6b0120
commit 827d4d7dc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ import org.slf4j.LoggerFactory;
* @author Peter Obel - Initial contribution
*/
@NonNullByDefault
abstract public class AbstractRadoneyeHandler extends BeaconBluetoothHandler {
public abstract class AbstractRadoneyeHandler extends BeaconBluetoothHandler {
private static final int CHECK_PERIOD_SEC = 10;
@ -59,13 +59,13 @@ abstract public class AbstractRadoneyeHandler extends BeaconBluetoothHandler {
private enum ServiceState {
NOT_RESOLVED,
RESOLVING,
RESOLVED,
RESOLVED
}
private enum ReadState {
IDLE,
READING,
WRITING,
WRITING
}
public AbstractRadoneyeHandler(Thing thing) {
@ -327,5 +327,5 @@ abstract public class AbstractRadoneyeHandler extends BeaconBluetoothHandler {
*
* @param is the content of the bluetooth characteristic
*/
abstract protected void updateChannels(int[] is);
protected abstract void updateChannels(int[] is);
}