fix warning

This commit is contained in:
cpfeiffer 2015-04-20 22:43:47 +02:00
parent 33d86de923
commit f6208f1031
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import android.util.Log;
public class GBDevice implements Parcelable {
public static final String 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
public GBDevice createFromParcel(Parcel source) {
return new GBDevice(source);