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

Commit c250524f authored by Nathan Harold's avatar Nathan Harold Committed by Android (Google) Code Review
Browse files

Merge "Expose PreciseDataConnectionstate#getApnSetting()"

parents 4af7ad63 a61992b6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -47296,6 +47296,7 @@ package android.telephony {
  public final class PreciseDataConnectionState implements android.os.Parcelable {
    method public int describeContents();
    method @Nullable public android.telephony.data.ApnSetting getApnSetting();
    method public int getLastCauseCode();
    method @Nullable public android.net.LinkProperties getLinkProperties();
    method public int getNetworkType();
+2 −2
Original line number Diff line number Diff line
@@ -265,10 +265,10 @@ public final class PreciseDataConnectionState implements Parcelable {
    /**
     * Return the APN Settings for this data connection.
     *
     * Returns the ApnSetting that was used to configure this data connection.
     * @return the ApnSetting that was used to configure this data connection.
     */
    // FIXME: This shouldn't be nullable; update once the ApnSetting is supplied correctly
    @Nullable ApnSetting getApnSetting() {
    public @Nullable ApnSetting getApnSetting() {
        return mApnSetting;
    }