Merge "expose systemAPI for SmsCbLocation constructor"

This commit is contained in:
Chen Xu
2019-11-21 17:38:41 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -8142,6 +8142,7 @@ package android.telephony {
}
public final class SmsCbLocation implements android.os.Parcelable {
ctor public SmsCbLocation(@NonNull String, int, int);
method public int describeContents();
method public int getCid();
method public int getLac();

View File

@@ -65,9 +65,8 @@ public final class SmsCbLocation implements Parcelable {
/**
* Construct a location object for the PLMN, LAC, and Cell ID. This class is immutable, so
* the same object can be reused for multiple broadcasts.
* @hide
*/
public SmsCbLocation(String plmn, int lac, int cid) {
public SmsCbLocation(@NonNull String plmn, int lac, int cid) {
mPlmn = plmn;
mLac = lac;
mCid = cid;