Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2105a421 authored by Chen Xu's avatar Chen Xu
Browse files

expose systemAPI for SmsCbLocation constructor

Bug: 135956699
Test: cts SmsCbLocationTest
Change-Id: I7b9c6fa453ee907aaa13d65e0b13de0556852313
(cherry picked from commit 8635f37b)
Merged-in: I7b9c6fa453ee907aaa13d65e0b13de0556852313
parent e993fb8b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8121,6 +8121,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();
+1 −2
Original line number Diff line number Diff line
@@ -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;