These modifiers are out of order with the JLS suggestions.
Signed-off-by: Wouter Born <github@maindrain.net>
* @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;
private enum ServiceState {
NOT_RESOLVED,
RESOLVING,
- RESOLVED,
+ RESOLVED
}
private enum ReadState {
IDLE,
READING,
- WRITING,
+ WRITING
}
public AbstractRadoneyeHandler(Thing thing) {
*
* @param is the content of the bluetooth characteristic
*/
- abstract protected void updateChannels(int[] is);
+ protected abstract void updateChannels(int[] is);
}