diff options
author | Dianne Hackborn <hackbod@google.com> | 2009-09-30 22:35:40 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2009-09-30 23:21:02 -0700 |
commit | 29e4a3c566f435c32f0b95e4ac8e8b33cac6faba (patch) | |
tree | 75b4244d2616aa5513991d15f721ab3b21f0d333 /telephony/java/android | |
parent | d9b6f14a6926dce7ad3d98e6e30b503c69c904c0 (diff) | |
download | frameworks_base-29e4a3c566f435c32f0b95e4ac8e8b33cac6faba.zip frameworks_base-29e4a3c566f435c32f0b95e4ac8e8b33cac6faba.tar.gz frameworks_base-29e4a3c566f435c32f0b95e4ac8e8b33cac6faba.tar.bz2 |
Update from API review.
Change-Id: I16b1c566f91167aac9615ac59dd297a154c828ea
Diffstat (limited to 'telephony/java/android')
-rw-r--r-- | telephony/java/android/telephony/NeighboringCellInfo.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/NeighboringCellInfo.java b/telephony/java/android/telephony/NeighboringCellInfo.java index d698169..1d69761 100644 --- a/telephony/java/android/telephony/NeighboringCellInfo.java +++ b/telephony/java/android/telephony/NeighboringCellInfo.java @@ -75,6 +75,7 @@ public class NeighboringCellInfo implements Parcelable * the radio network type at that moment. Its constructor needs radio network * type. */ + @Deprecated public NeighboringCellInfo() { mRssi = UNKNOWN_RSSI; mLac = UNKNOWN_CID; @@ -91,6 +92,7 @@ public class NeighboringCellInfo implements Parcelable * the radio network type at that moment. Its constructor needs radio network * type. */ + @Deprecated public NeighboringCellInfo(int rssi, int cid) { mRssi = rssi; mCid = cid; @@ -228,6 +230,7 @@ public class NeighboringCellInfo implements Parcelable * the radio network type at that moment. It shouldn't be changed after * creation. */ + @Deprecated public void setCid(int cid) { mCid = cid; } @@ -240,6 +243,7 @@ public class NeighboringCellInfo implements Parcelable * the radio network type at that moment. It shouldn't be changed after * creation. */ + @Deprecated public void setRssi(int rssi) { mRssi = rssi; } |