mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2025-01-05 15:35:51 +01:00
Make the constant static final
This commit is contained in:
parent
ce574ea5db
commit
18ebd766c7
@ -30,11 +30,11 @@ import nodomain.freeyourgadget.gadgetbridge.service.serial.GBDeviceIoThread;
|
|||||||
|
|
||||||
public class CasioHandlerThread extends GBDeviceIoThread {
|
public class CasioHandlerThread extends GBDeviceIoThread {
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(CasioHandlerThread.class);
|
private static final Logger LOG = LoggerFactory.getLogger(CasioHandlerThread.class);
|
||||||
|
private static final int TX_PERIOD = 60;
|
||||||
private boolean mQuit = false;
|
private boolean mQuit = false;
|
||||||
private CasioGB6900DeviceSupport mDeviceSupport;
|
private CasioGB6900DeviceSupport mDeviceSupport;
|
||||||
private final Object waitObject = new Object();
|
private final Object waitObject = new Object();
|
||||||
|
|
||||||
private int TX_PERIOD = 60;
|
|
||||||
|
|
||||||
private Calendar mTxTime = GregorianCalendar.getInstance();
|
private Calendar mTxTime = GregorianCalendar.getInstance();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user