summaryrefslogtreecommitdiffstats
path: root/telephony/java/android
diff options
context:
space:
mode:
Diffstat (limited to 'telephony/java/android')
-rw-r--r--telephony/java/android/telephony/NeighboringCellInfo.java4
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;
}