Removed transient keyword from RSSI and timestamp variables

This commit is contained in:
Alexandros Schillings
2014-03-11 17:35:37 +00:00
parent a631cf2f81
commit d59f8dede0
@@ -21,8 +21,8 @@ public class BluetoothLeDevice implements Parcelable{
private final AdRecordStore mRecordStore;
private final BluetoothDevice mDevice;
private final byte[] mScanRecord;
private transient final int mRssi;
private transient final long mTimestamp;
private final int mRssi;
private final long mTimestamp;
public static final Parcelable.Creator<BluetoothLeDevice> CREATOR = new Parcelable.Creator<BluetoothLeDevice>() {
public BluetoothLeDevice createFromParcel(Parcel in) {