mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-06-05 21:49:48 +02:00
fix warning
This commit is contained in:
@@ -10,7 +10,7 @@ import android.util.Log;
|
|||||||
public class GBDevice implements Parcelable {
|
public class GBDevice implements Parcelable {
|
||||||
public static final String ACTION_DEVICE_CHANGED
|
public static final String ACTION_DEVICE_CHANGED
|
||||||
= "nodomain.freeyourgadget.gadgetbride.gbdevice.action.device_changed";
|
= "nodomain.freeyourgadget.gadgetbride.gbdevice.action.device_changed";
|
||||||
public static final Creator CREATOR = new Creator<GBDevice>() {
|
public static final Creator<GBDevice> CREATOR = new Creator<GBDevice>() {
|
||||||
@Override
|
@Override
|
||||||
public GBDevice createFromParcel(Parcel source) {
|
public GBDevice createFromParcel(Parcel source) {
|
||||||
return new GBDevice(source);
|
return new GBDevice(source);
|
||||||
|
Reference in New Issue
Block a user